Stop over-managing user SSH keyfiles

* modules/user/manifests/virtual/localuser.pp: This reverts part of
0d82c62 which was providing a temporary transition correcting
permissions and ownership as well as removing the results of a
previous failed implementation of keyfile management. Unfortunately
that also caused nodepool images to no longer set up accounts
correctly, but reverting the transitional bits fixes that issue.

Change-Id: Ic3e7f0a3b82bbc8a23707b88f9fe381e9d70e356
This commit is contained in:
Jeremy Stanley 2014-04-30 20:02:33 +00:00
parent 38feed1cc7
commit 2a9412670c
1 changed files with 0 additions and 22 deletions

View File

@ -29,33 +29,11 @@ define user::virtual::localuser(
require => Group[$title],
}
file { "${title}_sshdir":
ensure => directory,
name => "${home}/.ssh",
owner => $title,
group => $title,
mode => '0700',
require => User[$title],
}
file { "${title}_keyfile":
ensure => present,
mode => '0600',
name => "${home}/.ssh/authorized_keys",
require => File["${title}_sshdir"],
}
ssh_authorized_key { $key_id:
ensure => present,
key => $sshkeys,
user => $title,
type => 'ssh-rsa',
require => File["${title}_keyfile"],
}
ssh_authorized_key { "${title}_keys":
ensure => absent,
user => $title,
}
if ( $old_keys != [] ) {