control-repo/modules/iis_demo/manifests/uninstall_iis.pp
jhejda@wmpromus.com 769a1c9698 eyaml
2019-05-23 16:13:12 +02:00

25 lines
434 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_iis'],
}
file { 'C:\\inetpub':
ensure => absent,
}
}