diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-27 16:51:32 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-27 16:51:32 -0400 |
commit | d827a52614fc41ca98e2f2fc453da2e2ae4965ec (patch) | |
tree | 5db5cd4911d17d0dfd73f73047ce09dafe62135e /manifests | |
parent | 57eb2df0371c53988244094e07b1b30486529d0d (diff) | |
download | puppet-sshd-d827a52614fc41ca98e2f2fc453da2e2ae4965ec.tar.gz puppet-sshd-d827a52614fc41ca98e2f2fc453da2e2ae4965ec.tar.bz2 |
rename the templates to coincide with the downcased lsbdistcodename
also add a missing comma in the content selector
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index be33d7d..519e242 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -191,7 +191,7 @@ class sshd::base { content => $lsbdistcodename ? { '' => template("sshd/sshd_config/${operatingsystem}.erb"), default => template ("sshd/sshd_config/${operatingsystem}_${lsbdistcodename}.erb"), - } + }, notify => Service[sshd], } # Now add the key, if we've got one |