diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-01 15:32:52 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-01 15:32:52 +0100 |
commit | d291d8ec07428493552aa3441d68b8ff2530e661 (patch) | |
tree | eabeb15b01331f585e718a6bc20227d525c8b33b | |
parent | 3b6e6167ace0ef7cd04af38eedb6875936a3f921 (diff) | |
download | puppet.SGM-d291d8ec07428493552aa3441d68b8ff2530e661.tar.gz puppet.SGM-d291d8ec07428493552aa3441d68b8ff2530e661.tar.bz2 puppet.SGM-d291d8ec07428493552aa3441d68b8ff2530e661.zip |
site.pp: Typo fix (missing curly brace open).
-rw-r--r-- | code/environments/production/manifests/site.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 4382354..4254c75 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -270,7 +270,7 @@ node "faiserver.intern" { # NOT PRESENT node "devserver.intern" inherits "all_servers" {} # NOTEBOOKS (aka ROAMING WORKSTATIONS) -node /(md-lap-[0-9]+|notebook-[0-9]+|test-notebook)\.intern$/ +node /(md-lap-[0-9]+|notebook-[0-9]+|test-notebook)\.intern$/ { class { 'ssh_pubkeys_admins': } class { 'ssh_pubkeys_firedadmins': } class { 'lsb_release_with_version': } |