From d827a52614fc41ca98e2f2fc453da2e2ae4965ec Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Sat, 27 Sep 2008 16:51:32 -0400 Subject: [PATCH] rename the templates to coincide with the downcased lsbdistcodename also add a missing comma in the content selector --- manifests/init.pp | 2 +- templates/sshd_config/{Debian_Etch.erb => Debian_etch.erb} | 0 templates/sshd_config/{Debian_Lenny.erb => Debian_lenny.erb} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename templates/sshd_config/{Debian_Etch.erb => Debian_etch.erb} (100%) rename templates/sshd_config/{Debian_Lenny.erb => Debian_lenny.erb} (100%) 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 diff --git a/templates/sshd_config/Debian_Etch.erb b/templates/sshd_config/Debian_etch.erb similarity index 100% rename from templates/sshd_config/Debian_Etch.erb rename to templates/sshd_config/Debian_etch.erb diff --git a/templates/sshd_config/Debian_Lenny.erb b/templates/sshd_config/Debian_lenny.erb similarity index 100% rename from templates/sshd_config/Debian_Lenny.erb rename to templates/sshd_config/Debian_lenny.erb -- 2.39.5