aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-25 14:05:32 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-25 14:05:32 +0000
commit7b3047b558206728133887664f36130748e5ce48 (patch)
treee461551ed1705ee1978371794a8b2de4584765b7 /manifests
parentc140469f04ad7cac41f5a6465ebb3befd64bfd56 (diff)
downloadpuppet-sshd-7b3047b558206728133887664f36130748e5ce48.tar.gz
puppet-sshd-7b3047b558206728133887664f36130748e5ce48.tar.bz2
fixed import order
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@846 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 1e0f468..e8a67c8 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -52,10 +52,10 @@ define sshd::sshd_config(
default => $source,
}
- $real_sshd_allowed_users = $sshd_allowed_users ? {
- '' => 'root',
- default => $sshd_allowed_users,
- }
+ $real_sshd_allowed_users = $sshd_allowed_users ? {
+ '' => 'root',
+ default => $sshd_allowed_users,
+ }
file { 'sshd_config':
path => '/etc/ssh/sshd_config',