diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-26 18:16:58 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-26 18:16:58 -0400 |
commit | e525f18d129ac3b9adc8e6df89c9e5e48367439c (patch) | |
tree | 3d4d0342c7f00b1acab705a10a8996896fecf9c6 /manifests/init.pp | |
parent | 0b180227270cf5d1a5e2176142c2a129940f523a (diff) | |
download | puppet-sshd-e525f18d129ac3b9adc8e6df89c9e5e48367439c.tar.gz puppet-sshd-e525f18d129ac3b9adc8e6df89c9e5e48367439c.tar.bz2 |
minor fix to indentation
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 12 |
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], } } |