Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2016.4.x
- Puppet >= 4.10.0 < 7.0.0
Start using this module
Add this module to your Puppetfile:
mod 'puppet-dotnet', '2.0.2'
Learn more about managing modules with a PuppetfileDocumentation
Dotnet module for Puppet
Table of Contents
- Overview
- Module Description - What is the dotnet module?
- Setup - The basics of getting started with dotnet
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
Puppet module for installing and managing Microsoft .NET framework.
Module Description
This module installs and configures the Microsoft .NET framework on Windows systems. It support side-by-side installs where appropriate.
Setup
What dotnet affects
- Installs the .net framework package or the windows server role.
Beginning with dotnet
Installing the .net 3.5 server role on windows server:
dotnet { 'dotnet35': version => '3.5' }
Installing .net 4.5:
dotnet { 'dotnet45':
version => '4.5'
deployment_root => 'Z:\packages'
}
Usage
Classes and Defined Types
Defined Type: dotnet
The dotnet module primary definition, dotnet
install and configures the .net
framework packages/roles
Parameters within dotnet
:
ensure
Ensures the state of .net on the system. Present or Absent.
version
The version of .net that you want to be managed by this definition.
package_dir
If installing .NET from a directory or a mounted network location then this is that directory
Reference
Definitions
Public Definitions
dotnet
: Guides the basic management of the .net framework on the system.
Private Definitions
dotnet::install::feature
: Installs dotnet as windows feature (.net 3.5)dotnet::install::package
: Installs dotnet from a downloaded package.
Limitations
This module is tested on the following platforms:
- Windows 2008 R2
It is tested with the OSS version of Puppet only.
Development
Contributing
Please read CONTRIBUTING.md for full details on contributing to this project.
Changelog
All notable changes to this project will be documented in this file. Each new release typically also includes the latest modulesync defaults. These should not affect the functionality of the module.
v2.0.2 (2018-10-19)
Merged pull requests:
- modulesync 2.1.0 and allow puppet 6.x #62 (bastelfreak)
v2.0.1 (2018-09-06)
Merged pull requests:
- allow puppetlabs/stdlib 5.x #58 (bastelfreak)
- allow puppet/download_file 3.x #56 (bastelfreak)
- Remove docker nodesets #53 (bastelfreak)
- bump puppet version dependency to >= 4.10.0 \< 6.0.0 #52 (bastelfreak)
v2.0.0 (2017-11-16)
Merged pull requests:
- bump puppet version dependency to >= 4.7.1 \< 6.0.0 #46 (bastelfreak)
- replace validate_re with datatype #43 (bastelfreak)
- modulesync 0.19.3 #37 (bastelfreak)
v1.1.0 (2017-02-11)
This is the last release with Puppet3 support!
- Fix wrong requirements in metadata.json
- Sync metadata.json license to be same as LICENSE
- Set min version_requirement for Puppet + deps
##2015-12-04 Release 1.0.2 ###Summary
####Bugfixes
- fixed issue install dotnet 4.5.2
##2015-03-23 Release 1.0.1 ###Summary
- puppet-community release
##2014-10-16 Release 1.0.0 ###Summary
####Features
- updating documentation to meet standard
- refactored the tests
- added support for 4.5.1 and 4.5.2
- added param package_dir that allows you do download to a directory other than C:\Windows\Temp
- adding support for downloading from the web using opentable/download_file when not specifying the package_dir
####Bugfixes
- fixing bug in operatingsystemversion checks
- fixing error when running with strict_variables
- updating powershell dependency from joshcopper to puppetlabs
##2013-05-01 Release 0.0.2 ###Summary
####Features
- refactored into define type to allow for side-by-side install of 3.5 and 4.x
####Bugfixes
- fixed warning about string escaping on puppet 3.x
##2013-04-25 Release 0.0.1 ###Summary
Initial release. Intalls 3.5, 4.0 and 4.5
* This Changelog was automatically generated by github_changelog_generator
Dependencies
- puppetlabs/stdlib (>= 4.6.0 < 6.0.0)
- puppetlabs/powershell (>= 1.1.1 < 3.0.0)
- liamjbennett/win_facts (>= 0.0.2 < 2.0.0)
- puppet/download_file (>= 2.0.0 < 4.0.0)
Copyright (c) 2014 Liam Bennett (liamjbennett@gmail.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.