summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-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",