summaryrefslogtreecommitdiff
path: root/code/environments/production/manifests/site.pp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-13 10:59:52 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-13 10:59:52 +0200
commit3823c006f9b1adfd5b6d2535532ccc18ef57be91 (patch)
treeae3e87065ed5f5049c94027d8749257439ead593 /code/environments/production/manifests/site.pp
parente07bb299ee52e88caccca13e4c26f99241e8e415 (diff)
downloadpuppet.FWSECK-3823c006f9b1adfd5b6d2535532ccc18ef57be91.tar.gz
puppet.FWSECK-3823c006f9b1adfd5b6d2535532ccc18ef57be91.tar.bz2
puppet.FWSECK-3823c006f9b1adfd5b6d2535532ccc18ef57be91.zip
site.pp: Ensure re-installation of unattended-upgrades on notebook-* hosts.
Diffstat (limited to 'code/environments/production/manifests/site.pp')
-rw-r--r--code/environments/production/manifests/site.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp
index 36ce027..17af162 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -257,9 +257,9 @@ class itzks_systems_disklserver {
# }
#}
-class pkg_unattended_upgrades_removed {
+class pkg_unattended_upgrades_installed {
package { 'unattended-upgrades':
- ensure => 'absent',
+ ensure => 'latest',
}
}
@@ -390,7 +390,7 @@ node /(notebook-.*)\.intern$/ {
class { 'fsautoresizetab': }
class { 'fsautoresizetab_change_usr': }
class { 'lsb_release_with_version': }
- class { 'pkg_unattended_upgrades_removed': }
+ class { 'pkg_unattended_upgrades_installed': }
class { 'unattended_upgrades':
enable => 0,
origins => $apt_origins,