1
0
control-repo/site-modules/profile/manifests/custom_windows/deploy_iis.pp
2020-02-12 16:47:02 +00:00

11 lines
147 B
Puppet

class profile::custom_windows::deploy_iis (
) {
dsc_windowsfeature {'IIS':
dsc_ensure => 'present',
dsc_name => 'Web-Server',
}
}