This commit is contained in:
jhejda@wmpromus.com 2019-05-24 10:25:44 +02:00
parent 5d1673596f
commit 02aa5a09b0

View File

@ -0,0 +1,22 @@
class demo::uninstall_wintools (
Boolean $uninstall_notepadplusplus = false,
Boolean $uninstall_baretail = false,
) {
include chocolatey
if $uninstall_notepadplusplus {
package { 'baretail':
ensure => absent,
provider => chocolatey,
}
}
if $uninstall_baretail {
package { 'notepadplusplus':
ensure => absent,
provider => chocolatey,
}
}
}