diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-02-20 08:18:30 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-02-20 08:18:30 +0100 |
commit | 910dc77bf00ca954d195c31688266a91cf28f80a (patch) | |
tree | e9bd64118a57bbc82190d402218e45f950c54935 | |
parent | 27f755fdac3b8df693b6b7a769256854b93d4c8a (diff) | |
download | puppet.KATH-910dc77bf00ca954d195c31688266a91cf28f80a.tar.gz puppet.KATH-910dc77bf00ca954d195c31688266a91cf28f80a.tar.bz2 puppet.KATH-910dc77bf00ca954d195c31688266a91cf28f80a.zip |
site.pp: Add extra quotes around proxy URLs.
-rw-r--r-- | code/environments/production/manifests/site.pp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 95d63c0..a1a477e 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -289,17 +289,17 @@ class ensure_roaming_workstation { file_line { 'http_proxy': path => '/etc/environment', - line => 'http_proxy=http://webcache:3128', + line => 'http_proxy="http://webcache:3128"', match => '^http_proxy=.*', } file_line { 'https_proxy': path => '/etc/environment', - line => 'https_proxy=http://webcache:3128', + line => 'https_proxy="http://webcache:3128"', match => '^https_proxy=.*', } file_line { 'ftp_proxy': path => '/etc/environment', - line => 'ftp_proxy=http://webcache:3128', + line => 'ftp_proxy="http://webcache:3128"', match => '^ftp_proxy=.*', } } @@ -643,6 +643,7 @@ node /^t61.*\.intern$/ { class { 'ldapservercert_renewal': } class { 'cups_browsed_polling': } class { 'debianeducacert_2_cacerts': } + class { 'ensure_roaming_workstation': } class { 'ldapconf': } } |