summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-12-10 21:28:24 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-12-10 21:28:24 +0100
commit3846aec8d0d361744761060fe46ab93f06470015 (patch)
treeb038741582e4c64ea40cfc6aa4301bbb9e855021
parent21c618fe045a31ae9a8fd5b811e9f2b25fe1bc2f (diff)
downloadpuppet.FWSECK-3846aec8d0d361744761060fe46ab93f06470015.tar.gz
puppet.FWSECK-3846aec8d0d361744761060fe46ab93f06470015.tar.bz2
puppet.FWSECK-3846aec8d0d361744761060fe46ab93f06470015.zip
site.pp: For pkg_unattended_upgrades_removed, ensure 'absent', not 'removed'.
-rw-r--r--code/environments/production/manifests/site.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp
index 1bae047..99f18a3 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -247,7 +247,7 @@ class itzks_systems_disklserver {
class pkg_unattended_upgrades_removed {
package { 'unattended-upgrades':
- ensure => 'removed',
+ ensure => 'absent',
}
}