]> gitweb.fluxo.info Git - puppet-user.git/commitdiff
Removing tag parameter
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 24 Mar 2011 19:07:10 +0000 (16:07 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 24 Mar 2011 19:07:10 +0000 (16:07 -0300)
manifests/init.pp

index c381f1be49b2970122b644d249a50545449aca03..954d2241adc059dc6f010e18b77b7ff309510b7d 100644 (file)
@@ -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",