diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-31 11:28:58 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-31 11:28:58 -0300 |
commit | 56f3e30e7bfcae4fd597bb59b649027a5a117d86 (patch) | |
tree | 8a94e67f7b06a15cbc6ed73588e65ec076885957 | |
parent | bbdfa8cfba6a3cc56dbd3eac98b0bbc0785f7b08 (diff) | |
download | puppet-user-56f3e30e7bfcae4fd597bb59b649027a5a117d86.tar.gz puppet-user-56f3e30e7bfcae4fd597bb59b649027a5a117d86.tar.bz2 |
Drop refresh_keys support
-rw-r--r-- | manifests/manage.pp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/manifests/manage.pp b/manifests/manage.pp index 4c29445..05d9b9b 100644 --- a/manifests/manage.pp +++ b/manifests/manage.pp @@ -20,8 +20,7 @@ define user::manage( $sshkey_options = [], $sshkey_type = 'absent', $membership = 'minimum', - $ticket = false, - $refresh_keys = false) { + $ticket = false) { $real_groups = $groups ? { '' => [ "$title", ], @@ -138,17 +137,6 @@ define user::manage( gid => $real_gid ? { false => undef, default => $real_gid }, } - if $refresh_keys == true { - cron { "gpg-refresh-keys-${title}": - command => "/usr/bin/gpg --refresh-keys > /dev/null 2>&1", - user => $title, - hour => "*/1", - minute => "0", - ensure => present, - require => User[$title], - } - } - # lots of bugs preventing a good implementation for ssh keys # http://projects.reductivelabs.com/issues/1409 # http://projects.reductivelabs.com/issues/2004 |