summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-03-24 16:07:10 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-03-24 16:07:10 -0300
commit021867977988389917bf0bb3dbaa372b5057f93a (patch)
tree2aac85efba260a4cd76769737ca614b3e497f8fa
parent8cfe501af0e23b6412b91183ba96cb0c3b7723bd (diff)
downloadpuppet-user-021867977988389917bf0bb3dbaa372b5057f93a.tar.gz
puppet-user-021867977988389917bf0bb3dbaa372b5057f93a.tar.bz2
Removing tag parameter
-rw-r--r--manifests/init.pp3
1 files changed, 0 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index c381f1b..954d224 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -22,7 +22,6 @@ class user {
$sshkey_type = 'absent',
$membership = 'minimum',
$ticket = false,
- $tag = false,
$refresh_keys = false) {
if $password != 'absent' {
@@ -117,7 +116,6 @@ class user {
password => $password,
uid => $real_uid ? { false => undef, default => $real_uid },
gid => $real_gid ? { false => undef, default => $real_gid },
- tag => $tag,
}
if $refresh_keys == true {
@@ -140,7 +138,6 @@ class user {
ssh_authorized_key { "$title":
ensure => $ensure,
key => $sshkey,
- tag => $tag,
user => $title,
type => $real_sshkey_type,
target => "$real_homedir/.ssh/authorized_keys",