From 769a1c96984f6f2c9c01ef4b61d40cc7a19b2b33 Mon Sep 17 00:00:00 2001 From: "jhejda@wmpromus.com" Date: Thu, 23 May 2019 16:13:12 +0200 Subject: [PATCH] eyaml --- modules/iis_demo/manifests/uninstall_iis.pp | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/modules/iis_demo/manifests/uninstall_iis.pp b/modules/iis_demo/manifests/uninstall_iis.pp index e69de29..f245ae0 100644 --- a/modules/iis_demo/manifests/uninstall_iis.pp +++ b/modules/iis_demo/manifests/uninstall_iis.pp @@ -0,0 +1,24 @@ +#### +# 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, + } + +}