Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
- Puppet >= 7.0.0 < 9.0.0
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-dsc_lite', '4.1.0'Learn more about managing modules with a PuppetfileDocumentation
dsc_lite
Table of Contents
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with dsc_lite
- Usage - Configuring 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
- Learn More About DSC
- License
Module description
The Puppet dsc_lite module allows you to manage target nodes using arbitrary Windows PowerShell DSC (Desired State Configuration) Resources.
Warning:
Using dsc_lite requires advanced experience with DSC and PowerShell, unlike our other modules that are far easier to use. It is an alternative approach to Puppet's family of DSC modules, providing more flexibility for certain niche use cases.
The dsc_lite module contains a lightweight dsc type, which is a streamlined and minimal representation of a DSC Resource declaration in Puppet syntax. This type does not contain any DSC resources itself, but can invoke arbitrary DSC Resources that already exist on the managed node. Much like the exec type, it simply passes parameters through to the underlying DSC Resource without any validation.
This means that you are responsible for:
- Distributing the DSC Resources as needed to your managed nodes.
- Validating all configuration data for
dscdeclarations to prevent runtime errors. - Troubleshooting all errors without property status reporting.
The existing family of DSC modules will manage all the DSC administration for you, meaning that all you need to do is install the module and start writing code. These modules also do parameter validation, meaning that errors surface during development instead of at runtime. And the VS Code integration will show you usage documentation as you write the code. These modules are automatically imported from the PowerShell Gallery on a daily basis, so they're always up to date. Although these modules are approved for use, they are not officially supported.
You should use the dsc_lite module when any of these cases apply to you:
- You want to use the officially supported Puppet DSC Integration
- You need to use multiple versions of the same DSC resource
- You need to use a DSC Resource that isn't published to the Puppet Forge.
- If you have custom DSC Resources, you can use the Puppet.dsc module builder to build your own Puppet module from it.
Windows system prerequisites
At least PowerShell 5.0, which is included in Windows Management Framework 5.0.
Note: PowerShell version as obtained from $PSVersionTable must be 5.0.10586.117 or greater.
Setup
puppet module install puppetlabs-dsc_lite
See known issues for troubleshooting setup.
Usage
The generic dsc type is a streamlined and minimal representation of a DSC Resource declaration in Puppet syntax. You can use a DSC Resource by supplying the same properties you would set in a DSC Configuration script, inside the properties parameter. For most use cases, the properties parameter accepts the same structure as the PowerShell syntax, with the substitution of Puppet syntax for arrays, hashes, and other data structures. You can use PowerShell on the command-line to identify the available parameters.
PS C:\Users\Administrator> Get-DscResource WindowsFeature | Select-Object -ExpandProperty Properties
Name PropertyType IsMandatory Values
---- ------------ ----------- ------
Name [string] True {}
Credential [PSCredential] False {}
DependsOn [string[]] False {}
Ensure [string] False {Absent, Present}
IncludeAllSubFeature [bool] False {}
LogPath [string] False {}
PsDscRunAsCredential [PSCredential] False {}
Source [string] False {}
An example of that DSC resource specified in PowerShell:
WindowsFeature IIS {
Ensure => 'present'
Name => 'Web-Server'
}
Would look like this in Puppet:
dsc {'iis':
resource_name => 'WindowsFeature',
module => 'PSDesiredStateConfiguration',
properties => {
ensure => 'present',
name => 'Web-Server',
}
}
For the simplest cases, the above example is enough. However there are more advanced use cases in DSC that require more custom syntax in the dsc Puppet type. Since the dsc Puppet type has no prior knowledge of the type for each property in a DSC Resource, it can't format the hash correctly without some hints.
The properties parameter recognizes any key with a hash value that contains two keys: dsc_type and dsc_properties, as a indication of how to format the data supplied. The dsc_type contains the CimInstance name to use, and the dsc_properties contains a hash or an array of hashes, representing the data for the CimInstances.
A contrived, but simple example follows:
dsc {'foo':
resource_name => 'xFoo',
module => 'xFooBar',
properties => {
ensure => 'present',
fooinfo => {
'dsc_type' => 'FooBarBaz',
'dsc_properties' => {
"wakka" => "woot",
"number" => 8090
}
}
}
}
Specifying a DSC Resource version
When there is more than one version installed for a given DSC Resource module, you must specify the version in your declaration. You can specify the version with similar syntax to a DSC configuration script, by using a hash containing the name and version of the DSC Resource module.
dsc {'iis_server':
resource_name => 'WindowsFeature',
module => {
name => 'PSDesiredStateConfiguration',
version => '1.1'
},
properties => {
ensure => 'present',
name => 'Web-Server',
}
}
Distributing DSC Resources
There are several methods to distribute DSC Resources to the target nodes for the dsc_lite module to use.
PowerShell Gallery
You can choose to install DSC Resources using a mechanism that calls the builtin PowerShell package management system called PackageManagement. It uses the PowerShellGet module and pulls from the PowerShell Gallery. You are responsible for orchestrating this before Puppet is run on the host, or you can do so using exec in your Puppet manifest. This gives you control of the process, but requires you to manage the complexity yourself.
The following example shows how to install the xPSDesiredStateConfiguration DSC Resource, and can be extended to support different DSC Resource names. This example assumes a package repository has been configured.
exec { 'xPSDesiredStateConfiguration-Install':
command => 'Install-Module -Name xPSDesiredStateConfiguration -Force',
provider => 'powershell',
}
Puppet hbuckle/powershellmodule module
The community created module hbuckle/powershellmodule handles using PackageMangement and PowerShellGet to download and install DSC Resources on target nodes. It is another Puppet package provider, so it similar to how you install packages with Puppet for any other use case.
Installing a DSC Resource can be as simple as the following declaration:
package { 'xPSDesiredStateConfiguration':
ensure => latest,
provider => 'windowspowershell',
source => 'PSGallery',
}
The module supports configuring repository sources and other PackageManagement options, for example configuring trusted package repositories and private or on-premise package sources. For more information, please see the forge page.
Chocolatey
Puppet already works well with chocolatey. You can create chocolatey packages that wrap the DSC Resources you need.
package { 'xPSDesiredStateConfiguration':
ensure => latest,
provider => 'chocolatey',
}
This works well for users that already have a chocolatey source feed setup internally, as all you need to do is to push the DSC Resource chocolatey packages to the internal feed. If you use the community feed, you will have to check that the DSC Resource you use is present there.
Using PSCredential or MSFT_Credential
Specifying credentials in DSC Resources requires using a PSCredential object. The dsc type automatically creates a PSCredential if the dsc_type has MSFT_Credential as a value.
dsc {'foouser':
resource_name => 'User',
module => 'PSDesiredStateConfiguration',
properties => {
'username' => 'jane-doe',
'description' => 'Jane Doe user',
'ensure' => 'present',
'password' => {
'dsc_type' => 'MSFT_Credential',
'dsc_properties' => {
'user' => 'jane-doe',
'password' => Sensitive('StartFooo123&^!')
}
},
'passwordneverexpires' => false,
'disabled' => true,
}
}
Some DSC Resources require a password or passphrase for a setting, but do not need a user name. All credentials in DSC must be a PSCredential, so these passwords still have to be specified in a PSCredential format, even if there is no user to specify. How you specify the PSCredential depends on how the DSC Resource implemented the password requirement. Some DSC Resources accept an empty or null string for user, others do not. If it does not accept an empty or null string, then specify a dummy value. Do not use undef as it will error out.
You can also use the Puppet Sensitive type to ensure logs and reports redact the password.
dsc {'foouser':
resource_name => 'User',
module => 'PSDesiredStateConfiguration',
properties => {
'username' => 'jane-doe',
'description' => 'Jane Doe user',
'ensure' => 'present',
'password' => {
'dsc_type' => 'MSFT_Credential',
'dsc_properties' => {
'user' => 'jane-doe',
'password' => Sensitive('StartFooo123&^!')
}
},
'passwordneverexpires' => false,
'disabled' => true,
}
}
Using CimInstance
A DSC Resource may need a more complex type than a simple key value pair, for example, an EmbeddedInstance. An EmbeddedInstance is serialized as CimInstance over the wire. In order to represent a CimInstance in the dsc type, use the dsc_type key to specify which CimInstance to use. If the CimInstance is an array, append a [] to the end of the name.
For example, create a new IIS website using the xWebSite DSC Resource, bound to port 80. Use dsc_type to specify a MSFT_xWebBindingInformation CimInstance, and append [] to indicate that it is an array. Note that you do this even if you are only putting a single value in dsc_properties.
dsc {'NewWebsite':
resource_name => 'xWebsite',
module => 'xWebAdministration',
properties => {
ensure => 'Present',
state => 'Started',
name => 'TestSite',
physicalpath => 'C:\testsite',
bindinginfo => {
'dsc_type' => 'MSFT_xWebBindingInformation[]',
'dsc_properties' => {
"protocol" => "HTTP",
"port" => 80
}
}
}
}
To show using more than one value in dsc_properties, create the same site but bound to both port 80 and 443.
dsc {'NewWebsite':
resource_name => 'xWebsite',
module => 'xWebAdministration',
properties => {
ensure => 'Present',
state => 'Started',
name => 'TestSite',
physicalpath => 'C:\testsite',
bindinginfo => {
'dsc_type' => 'MSFT_xWebBindingInformation[]',
'dsc_properties' => [
{
"protocol" => "HTTP",
"port" => 80
},
{
'protocol' => 'HTTPS',
'port' => 443,
'certificatethumbprint' => 'F94B4CC4C445703388E418F82D1BBAA6F3E9E512',
'certificatestorename' => 'My',
'ipaddress' => '*'
}
]
}
}
}
Handling reboots with DSC
Add the following reboot resource to your manifest. It must have the name dsc_reboot for the dsc module to find and use it.
reboot { 'dsc_reboot' :
message => 'DSC has requested a reboot',
when => 'pending',
onlyif => 'pending_dsc_reboot',
}
Reference
For information on the types, see REFERENCE.md.
Limitations
-
DSC Composite Resources are not supported.
-
DSC requires PowerShell
Execution Policyfor theLocalMachinescope to be set to a less restrictive setting thanRestricted. Because of this, you may encounter the error below:Error: /Stage[main]/Main/Dsc_xgroup[testgroup]: Could not evaluate: Importing module MSFT_xGroupResource failed with error - File C:\Program Files\WindowsPowerShell\Modules\PuppetVendoredModules\xPSDesiredStateConfiguration\DscResources\MSFT_xGroupR esource\MSFT_xGroupResource.psm1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170. -
You cannot use forward slashes for the MSI
Pathproperty for thePackageDSC Resource. The underlying implementation does not accept forward slashes instead of backward slashes in paths, and it throws a misleading error that it could not find a Package with the Name and ProductId provided. -
When PowerShell Script Block Logging is enabled, data marked as sensitive in your manifest may appear in these logs as plain text. It is highly recommended, by both Puppet and Microsoft, that you also enable Protected Event Logging alongside this to encrypt the logs to protect this information.
Known Issues
--noop mode, puppet resource and property change notifications are currently not implemented.
Running Puppet and DSC without administrative privileges
While there are options for using Puppet with a non-administrative account, DSC is limited to accounts with administrative privileges. The underlying CIM implementation DSC uses for DSC Resource invocation, and the Invoke-DscResource cmdlet, require administrative credentials.
The Puppet agent on a Windows node can run DSC with a normal default install. If the Puppet agent is configured to use an alternate user account, it must have administrative privileges on the system to run DSC.
Troubleshooting
When Puppet runs, the dsc_lite module takes the code supplied in your Puppet manifest and converts it into PowerShell code that is sent directly to the DSC engine using Invoke-DscResource. You can see both the commands sent and the result of this by running Puppet interactively, for example, puppet apply --debug. It outputs the PowerShell code that is sent to DSC to execute and return data from DSC. For example:
Notice: Compiled catalog for win2012r2 in environment production in 0.82 seconds
Debug: Creating default schedules
Debug: Loaded state in 0.03 seconds
Debug: Loaded state in 0.05 seconds
Info: Applying configuration version '1475264065'
Debug: Reloading posix reboot provider
Debug: Facter: value for uses_win32console is still nil
Debug: PowerShell Version: 5.0.10586.117
$invokeParams = @{
Name = 'ExampleDSCResource'
Method = 'test'
Property = @{
property1 = 'value1'
property2 = 'value2'
}
ModuleName = 'ExampleDscResourceModule'
}
############### SNIP ################
Debug: Waited 50 milliseconds...
############### SNIP ################
Debug: Waited 500 total milliseconds.
Debug: Dsc Resource returned: {"rebootrequired":false,"indesiredstate":false,"errormessage":""}
Debug: Dsc Resource Exists?: false
Debug: ensure: present
############### SNIP ################
$invokeParams = @{
Name = 'ExampleDSCResource'
Method = 'set'
Property = @{
property1 = 'value1'
property2 = 'value2'
}
ModuleName = 'ExampleDscResourceModule'
}
############### SNIP ################\
Debug: Waited 100 total milliseconds.
Debug: Create Dsc Resource returned: {"rebootrequired":false,"indesiredstate":true,"errormessage":""}
Notice: /Stage[main]/Main/Dsc_exampledscresource[foober]/ensure: invoked
Debug: /Stage[main]/Main/Dsc_exampledscresource[foober]: The container Class[Main] will propagate my refresh event
Debug: Class[Main]: The container Stage[main] will propagate my refresh event
Debug: Finishing transaction 56434520
Debug: Storing state
Debug: Stored state in 0.10 seconds
############### SNIP ################
This shows us that there wasn't a problem parsing the manifest and turning it into a command to send to DSC. It also shows that there are two commands/operations for every DSC Resource executed, a SET and a test. DSC operates in two stages, it first tests if a system is in the desired state, and then it sets the state of the system to the desired state. You can see the result of each operation in the debug log.
By using the debug logging of a Puppet run, you can troubleshoot the application of DSC Resources during the development of your Puppet manifests.
Development
Acceptance tests for this module leverage puppet_litmus. To run the acceptance tests follow the instructions here. You can also find a tutorial and walkthrough of using Litmus and the PDK on YouTube.
If you run into an issue with this module, or if you would like to request a feature, please raise an issue. Every Monday the Puppet IA Content Team has office hours in the Puppet Community Slack, alternating between an EMEA friendly time (1300 UTC) and an Americas friendly time (0900 Pacific, 1700 UTC).
If you have problems getting this module up and running, please contact Support.
If you submit a change to this module, be sure to regenerate the reference documentation as follows:
puppet strings generate --format markdown --out REFERENCE.md
Contributors
To see who's already involved, see the list of contributors.
Learn More About DSC
You can learn more about PowerShell DSC from the following online resources:
- Microsoft PowerShell Desired State Configuration Overview - Starting point for DSC topics
- Microsoft PowerShell DSC Resources page - For more information about built-in DSC Resources
- Microsoft PowerShell xDSCResources Github Repo - For more information about xDscResources
- Windows PowerShell Blog - DSC tagged posts from the Microsoft PowerShell Team
- Using Puppet and DSC to Report on Environment Change - PuppetConf 10-2017 talk and slides
- Puppet Inc Windows DSC & WSUS Webinar 9-17-2015 webinar - How DSC works with Puppet
- Better Together: Managing Windows with Puppet, PowerShell and DSC - PuppetConf 10-2015 talk and slides
- PowerShell.org - Community based DSC tagged posts
- PowerShell Magazine - Community based DSC tagged posts
There are several books available as well. Here are some selected books for reference:
- Learning PowerShell DSC 2nd Edition - James Pogran is a member of the team here at Puppet Inc working on the DSC/Puppet integration
- The DSC Book - Powershell.org community contributed content
- Pro PowerShell Desired State Configuration - Ravikanth Chaganti
License
- Copyright (c) 2014 Marc Sutter, original author
- Copyright (c) 2015 - Present Puppet Inc
- License: Apache License, Version 2.0
Reference
Table of Contents
Resource types
base_dsc_lite: The base Puppet DSC type that all of the types inherit from. Do not use this directly.dsc: Thedsctype allows specifying any DSC Resource declaration as a minimal Puppet declaration.
Resource types
base_dsc_lite
The base Puppet DSC type that all of the types inherit from. Do not use this directly.
Parameters
The following parameters are available in the base_dsc_lite type.
name
namevar
A name to describe your resource, used for uniqueness.
provider
The specific backend to use for this base_dsc_lite resource. You will seldom need to specify this --- Puppet will
usually discover the appropriate provider for your platform.
dsc
The dsc type allows specifying any DSC Resource declaration as a minimal Puppet declaration.
Examples
dsc {'iis':
resource_name => 'WindowsFeature',
module => 'PSDesiredStateConfiguration',
properties => {
ensure => 'present',
name => 'Web-Server',
}
}
Properties
The following properties are available in the dsc type.
ensure
Valid values: present
An optional property that specifies that the DSC resource should be invoked.
Parameters
The following parameters are available in the dsc type.
dsc_timeout
Specify a timeout for Invoke-DscResource.
module
Name of the DSC Resource module to use. For example, the xPSDesiredStateConfiguration DSC Resource module contains the xRemoteFile DSC Resource.
name
namevar
Name of the declaration. This has no affect on the DSC Resource declaration and is not used by the DSC Resource.
properties
Hash of properties to pass to the DSC Resource.
To express EmbeddedInstances, the properties parameter recognizes any key with a hash value that contains two keys —
dsc_type
and dsc_properties — as a indication of how to format the data supplied. The dsc_type contains the CimInstance name
to use,
and the dsc_properties contains a hash or an array of hashes representing the data for the CimInstances. If the
CimInstance is
an array, we append a [] to the end of the name.
provider
The specific backend to use for this dsc resource. You will seldom need to specify this --- Puppet will usually
discover the appropriate provider for your platform.
resource_name
Name of the DSC Resource to use. For example, the xRemoteFile DSC Resource.
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
v4.1.0 - 2024-08-15
Added
- (CAT-1869) - Add configurable dsc_timeout param for dsc type #213 (jordanbreen28)
Fixed
- (Bug) - Fix timeout matcher #219 (jordanbreen28)
- (CAT-1927) - Remove Windows 7, 8.x and 2008 R2 Support #218 (jordanbreen28)
v4.0.1 - 2024-06-06
Fixed
- (bug) - Update readme for release on forge #211 (jordanbreen28)
v4.0.0 - 2024-05-29
Changed
Added
- pdksync - (FM-8922) - Add Support for Windows 2022 #196 (david22swan)
Fixed
- Fix ERB.new depracation notices #204 (Fabian1976)
v3.2.0 - 2022-01-27
Added
v3.1.0 - 2021-03-31
Added
- (MODULES-10985) - Raise Reboot upper bound to 5 #175 (david22swan)
- pdksync - (feat) - Add support for Puppet 7 #171 (daianamezdrea)
Fixed
- (MODULES-10471) Allow namevar to have special chars #148 (jarretlavallee)
v3.0.1 - 2020-01-16
Fixed
- (MAINT) Safeguard loading ruby-pwsh #143 (michaeltlombardi)
v3.0.0 - 2019-12-13
Changed
- (FM 8425) - Replace Library Code #134 (david22swan)
v2.0.2 - 2019-09-05
Fixed
- (MODULES-9800) Fix Lib Environment Variable Check #126 (RandomNoun7)
v2.0.1 - 2019-08-22
Fixed
- (MAINT) Fix powershell_version OS guard #122 (michaeltlombardi)
v2.0.0 - 2019-08-20
Added
- (MODULES-9343) Add Puppet Strings docs #116 (eimlav)
- (MODULES-9086) Increase pipe timeout to 180 #108 (michaeltlombardi)
Fixed
- (MODULES-8171) Run fails if paths in $env:lib don't exist #109 (carabasdaniel)
- (MODULES-8602) Resolved declaration conflict between DSC/DSC_Lite #85 (AnthonieSmitASR)
1.2.1 - 2019-04-22
Added
- (MODULES-8856) Redact debug #104 (michaeltlombardi)
- (WIN-280) add skip() unless pattern to tests #102 (ThoughtCrhyme)
1.2.0 - 2019-02-05
Added
- (FM-7693) Add Windows Server 2019 #98 (glennsarti)
- (MODULES-8175) Munge Properties Hash for Sensitive #92 (michaeltlombardi)
- (MODULES-8175) Add safety to new-pscredential helper #91 (michaeltlombardi)
Fixed
- (MODULES-7716) Fix Readme Reboot Snippet #95 (RandomNoun7)
- (MODULES-8397) PDK Sync module to fix Travis #94 (RandomNoun7)
- Revert "(MODULES-8175) Add safety to new-pscredential helper" #93 (michaeltlombardi)
1.1.0 - 2018-11-26
Added
- (MODULES-7831) Add Puppet 6 version to metadata. #88 (ThoughtCrhyme)
1.0.0 - 2018-08-27
0.6.0 - 2018-08-02
Added
Fixed
- (MODULES-7554) Fix crash on Puppet 4 / WMF < 5 #72 (Iristyle)
- (MODULES-7485) Fix validation for required parameters #71 (jpogran)
0.5.0 - 2018-07-10
Changed
- (MODULES-7197) Remove unused ensurable values #55 (michaeltlombardi)
Added
- (MODULES-6517) add --detailed-exitcodes #61 (ThoughtCrhyme)
- (MODULES-7179) Change created to invoked #59 (RandomNoun7)
Fixed
- (MODULES-7253) Replace verbose parameter names #58 (michaeltlombardi)
0.4.0 - 2018-06-08
Added
- (MODULES-7143) add UTF-8 encoding to ERB templates. #51 (ThoughtCrhyme)
- (MODULES-7141) Support Sensitive data type #49 (jpogran)
0.3.0 - 2018-05-22
Added
- (MODULES-4271) Add Server 2016 to metadata #43 (glennsarti)
- (MODULES-6860) Add
dsc_litefeature for confines #41 (Iristyle)
Fixed
- Fix rocket alignment. #46 (RandomNoun7)
- (MODULES-6930) Fix Pipes Server On windows2008r2 #42 (RandomNoun7)
0.2.0 - 2018-02-02
Added
- (MODULES-6548) Re-add empty file to "integration" #32 (Iristyle)
- (MODULES-5845) Add DSC Resource ModuleSpecification support #29 (jpogran)
0.1.0 - 2018-01-10
Dependencies
- puppetlabs/reboot (>= 1.2.1 < 6.0.0)
- puppetlabs/pwshlib (>= 0.4.0 < 2.0.0)
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Quality checks
We run a couple of automated scans to help you assess a module’s quality. Each module is given a score based on how well the author has formatted their code and documentation and select modules are also checked for malware using VirusTotal.
Please note, the information below is for guidance only and neither of these methods should be considered an endorsement by Puppet.
Malware scan results
The malware detection service on Puppet Forge is an automated process that identifies known malware in module releases before they’re published. It is not intended to replace your own virus scanning solution.
Learn more about malware scans- Module name:
- puppetlabs-dsc_lite
- Module version:
- 4.1.0
- Scan initiated:
- August 15th 2024, 5:54:56
- Detections:
- 0 / 65
- Scan stats:
- 63 undetected
- 0 harmless
- 2 failures
- 0 timeouts
- 0 malicious
- 0 suspicious
- 12 unsupported
- Scan report:
- View the detailed scan report