diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2017-06-20 11:10:44 +0200 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2017-06-20 11:10:44 +0200 |
commit | e04449bb1622eaa967560b48ee0759c933c26550 (patch) | |
tree | 9dcdaa26b540bf10bede561c1a3648a76f7ad69c | |
parent | 34e78dd9feabf1cff273b10bc9be4a6fa9a9d145 (diff) | |
download | puppet.FWSECK-e04449bb1622eaa967560b48ee0759c933c26550.tar.gz puppet.FWSECK-e04449bb1622eaa967560b48ee0759c933c26550.tar.bz2 puppet.FWSECK-e04449bb1622eaa967560b48ee0759c933c26550.zip |
Klasse itzks-systems-workstation für Paket-Updates erstellt und zugeordnet.
-rw-r--r-- | manifests/site.pp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/manifests/site.pp b/manifests/site.pp index b4f95d5..79a3df1 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -63,6 +63,12 @@ class login_manager { } } +class itzks-systems-workstation { + package { 'itzks-systems-workstation': + ensure => 'latest', + } +} + node "all_hosts" { class { 'ssh_pubkeys_admins': } class { 'ssh_pubkeys_firedadmins': } @@ -116,12 +122,15 @@ node "bibserv.intern" inherits "all_servers" { # Notebooks im Medienwagen node /notebook-[0-9]{2}\.intern$/ inherits "all_hosts" { - class { 'anacron_on_battery': } + class { 'anacron_on_battery': } + class { 'itzks-systems-workstation': } } # Bib-Tresen Notebooks node /bib-tresen-nb.*\.intern$/ inherits "all_hosts" { - class { 'anacron_on_battery': } + class { 'anacron_on_battery': } + class { 'itzks-systems-workstation': } } # Workstations node /workstation-.*\.intern$/ inherits "all_hosts" { + class { 'itzks-systems-workstation': } } |