control-repo/modules/iis_demo/manifests/uninstall_iis.pp
jhejda@wmpromus.com 3dac2c08be eyaml
2019-05-23 16:20:44 +02:00

33 lines
594 B
Puppet

####
# Class: intapp open webapp openweb
# Description:
# Customer: Freshfields Bruckhaus Deringer
# Author: WM Promus
# Date: April 2018
###
class iis_demo::uninstall_iis (
) {
dsc_windowsfeature { 'IIS':
dsc_ensure => 'absent',
dsc_name => 'Web-Server',
#require => Package['powershell'],
notify => Reboot['reboot_uninstall_iis'],
}
reboot { 'reboot_uninstall_iis':
when => refreshed,
timeout => 15,
}
file { 'C:\\inetpub':
ensure => directory,
recurse => true,
purge => true,
force => true,
}
}