aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2008-09-26 18:16:58 -0400
committerMicah Anderson <micah@riseup.net>2008-09-26 18:16:58 -0400
commite525f18d129ac3b9adc8e6df89c9e5e48367439c (patch)
tree3d4d0342c7f00b1acab705a10a8996896fecf9c6
parent0b180227270cf5d1a5e2176142c2a129940f523a (diff)
downloadpuppet-sshd-e525f18d129ac3b9adc8e6df89c9e5e48367439c.tar.gz
puppet-sshd-e525f18d129ac3b9adc8e6df89c9e5e48367439c.tar.bz2
minor fix to indentation
-rw-r--r--manifests/init.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index af716cd..e48524d 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -159,7 +159,7 @@ class sshd::base {
'' => 'no',
default => $sshd_permit_empty_passwords
}
-
+
file { 'sshd_config':
path => '/etc/ssh/sshd_config',
owner => root,
@@ -181,11 +181,11 @@ class sshd::base {
}
}
service{'sshd':
- name => 'sshd',
- enable => true,
- ensure => running,
- hasstatus => true,
- require => File[sshd_config],
+ name => 'sshd',
+ enable => true,
+ ensure => running,
+ hasstatus => true,
+ require => File[sshd_config],
}
}