Skip to content

Instantly share code, notes, and snippets.

Created April 29, 2016 08:08
Show Gist options
  • Save anonymous/0eb1dbe2262e8e5fa512a5cb18761858 to your computer and use it in GitHub Desktop.
Save anonymous/0eb1dbe2262e8e5fa512a5cb18761858 to your computer and use it in GitHub Desktop.
DSC Config File
Configuration DSCLinux02
{
Import-DSCResource -Module nx
Node "10.0.0.7" {
nxPackage httpdInstall
{
Name = "httpd"
Ensure = "Present"
PackageManager = "Yum"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment