diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2017-06-28 11:24:31 +0200 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2017-06-28 11:24:31 +0200 |
commit | 41c6cb0126930c386bd20140eced94cdd15be558 (patch) | |
tree | 3f5de0176b4801521b55d861e70ea5fa57dfc2aa | |
parent | 317be34bd926d05d8f87fc4013e243b4cd61b072 (diff) | |
download | puppet.FWSECK-41c6cb0126930c386bd20140eced94cdd15be558.tar.gz puppet.FWSECK-41c6cb0126930c386bd20140eced94cdd15be558.tar.bz2 puppet.FWSECK-41c6cb0126930c386bd20140eced94cdd15be558.zip |
manifests/site.pp: Add class itzks-systems-common (ensure=> latest). Assign class to "all hosts" and "all servers".
-rw-r--r-- | manifests/site.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/site.pp b/manifests/site.pp index c01bce9..04ce243 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -69,6 +69,13 @@ class itzks-systems-workstation { } } +class itzks-systems-common { + package { 'itzks-systems-common': + ensure => 'latest', + } +} + + class fsautoresizetab { file { '/etc/fsautoresizetab': ensure => 'present', @@ -98,6 +105,7 @@ node "all_hosts" { class { 'ssh_pubkeys_admins': } class { 'ssh_pubkeys_firedadmins': } class { 'login_manager': } + class { 'itzks-systems-common': } # settings appropriate for workstation hosts class { 'apt::unattended_upgrades': @@ -125,6 +133,7 @@ node "all_servers" { class { 'ssh_pubkeys_admins': } class { 'ssh_pubkeys_firedadmins': } class { 'ssh_pubkeys_backupserver': } + class { 'itzks-systems-common': } } node "disklserver.intern" inherits "all_servers" { |