diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-12-17 12:56:36 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-12-17 12:56:36 +0100 |
commit | 379ac7e1a67b20afc71a587229da2bd6ebf35c99 (patch) | |
tree | cd3927f20c7f0f2ab8e84eee932f8614d908eccf | |
parent | 4c6b6b75a5e82685360bfbc3f90a6ce25fda4344 (diff) | |
download | puppet.KATH-379ac7e1a67b20afc71a587229da2bd6ebf35c99.tar.gz puppet.KATH-379ac7e1a67b20afc71a587229da2bd6ebf35c99.tar.bz2 puppet.KATH-379ac7e1a67b20afc71a587229da2bd6ebf35c99.zip |
lsb-release-with-version: Add missing quotes.
-rw-r--r-- | code/environments/production/manifests/site.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index dca6541..86b4cc6 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -59,8 +59,8 @@ class lsb_release_with_version { } file_line { 'lsb-release-with-version': path => '/etc/lsb-release', - line => "DISTRIB_DESCRIPTION=Debian Edu / Skolelinux ${::operatingsystemrelease}", - match => "^DISTRIB_DESCRIPTION=DebianEdu/Skolelinux$", + line => "DISTRIB_DESCRIPTION=\"Debian Edu / Skolelinux ${::operatingsystemrelease}\"", + match => "^DISTRIB_DESCRIPTION=\"DebianEdu/Skolelinux\"$", } } |