diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-05 16:36:32 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-01-05 16:36:32 +0100 |
commit | 34058c08f34dc05ea6f804687c564ee63c9b85dd (patch) | |
tree | eba919628ecaa05a0bd3f6fb165b7b15811f1813 /code/environments/production/manifests/site.pp | |
parent | a903cdbe6dee335687afada95b2d6962fd982a14 (diff) | |
download | puppet.SGM-34058c08f34dc05ea6f804687c564ee63c9b85dd.tar.gz puppet.SGM-34058c08f34dc05ea6f804687c564ee63c9b85dd.tar.bz2 puppet.SGM-34058c08f34dc05ea6f804687c564ee63c9b85dd.zip |
site.pp: Add 'krb5hostkeytab' to all server VMs and all explicitly known client systems.
Diffstat (limited to 'code/environments/production/manifests/site.pp')
-rw-r--r-- | code/environments/production/manifests/site.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 4eaaf1e..ebd0066 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -200,6 +200,7 @@ node "disklserver.intern" { } class { 'itzks_systems_disklserver': } class { 'itzks_systems_common': } + class { 'krb5hostkeytab': } } node "faiserver.intern" { @@ -221,6 +222,7 @@ node "faiserver.intern" { } class { 'itzks_systems_faiserver': } class { 'itzks_systems_common': } + class { 'krb5hostkeytab': } } #node "filter.intern" { @@ -287,6 +289,7 @@ node /(notebook-[0-9]+|test-notebook)\.intern$/ { class { 'itzks_systems_roamingworkstation': } class { 'itzks_systems_common': } class { 'login_manager': } + class { 'krb5hostkeytab': } } @@ -311,6 +314,7 @@ node /(workstation-[0-9]+|test-workstation)\.intern$/ { class { 'itzks_systems_workstation': } class { 'itzks_systems_common': } class { 'login_manager': } + class { 'krb5hostkeytab': } } # TABLETS @@ -332,6 +336,7 @@ node /(tab-[0-9]+|test-tablet)\.intern$/ { } class { 'itzks_systems_tablet': } class { 'itzks_systems_common': } + class { 'krb5hostkeytab': } } # default / minimal |