message
This commit is contained in:
parent
5d1673596f
commit
02aa5a09b0
22
modules/demo/manifests/uninstall_wintools.pp
Normal file
22
modules/demo/manifests/uninstall_wintools.pp
Normal 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,
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user