puppet: Make humbug's authorized_keys file owned by humbug.

(imported from commit 4237203722d7782cb5c479e408966494bc703149)
This commit is contained in:
Tim Abbott
2012-10-23 14:03:29 -04:00
parent 7a56448a35
commit 7079efba8d

View File

@@ -51,12 +51,16 @@ class humbug_base {
ensure => file,
require => File['/home/humbug/.ssh'],
mode => 600,
owner => "humbug",
group => "humbug",
source => '/root/humbug/servers/puppet/files/authorized_keys',
}
file { '/home/humbug/.ssh':
ensure => directory,
require => User['humbug'],
owner => "humbug",
group => "humbug",
mode => 600,
}