minor fix to indentation

This commit is contained in:
Micah Anderson 2008-09-26 18:16:58 -04:00
parent 0b18022727
commit e525f18d12

View file

@ -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],
}
}