diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-22 21:53:30 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-22 21:54:17 +0100 |
commit | deca192726ae18b19250e19c38bc89bcd26d59aa (patch) | |
tree | e271c5f2402523ff2db3f0ec62aa44464666a6a2 /code | |
parent | 447e07d76ba34c152ebca2d31b490c0437845850 (diff) | |
download | puppet.DEV-deca192726ae18b19250e19c38bc89bcd26d59aa.tar.gz puppet.DEV-deca192726ae18b19250e19c38bc89bcd26d59aa.tar.bz2 puppet.DEV-deca192726ae18b19250e19c38bc89bcd26d59aa.zip |
site.pp: Add node 'faiserver.intern'.
Diffstat (limited to 'code')
-rw-r--r-- | code/environments/production/manifests/site.pp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 6d49e1c..0828635 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -187,6 +187,25 @@ node "tjener.intern" { } } +node "faiserver.intern" { + class { 'ssh_pubkeys_admins': } + class { 'ssh_pubkeys_firedadmins': } + class { 'ssh_pubkeys_backupserver': } + class { 'lsb_release_with_version': } + class { 'unattended_upgrades': + enable => 1, + origins => $apt_origins, + auto => { + 'clean' => 7, + 'reboot' => true, + }, + upgradeable_packages => { + download_only => 1, + debdelta => 1, + }, + } +} + node "filter.intern" { class { 'ssh_pubkeys_admins': } class { 'ssh_pubkeys_firedadmins': } |