On Friday, September 6, 2013 6:43:27 AM UTC-5, Andreas Dvorak wrote:
>
> class admin_user::add {
>    define useradd ( $name, $uid, $group, $gid, $password, $shell, 
> $sshkeytype, $sshkey) {
>       $homedir = "/home"
>       $username = $title
>
>       user { $username:
>          ensure => present,
>          comment => "$name",
>          uid => "$uid",
>          gid => "$gid",
>          shell => "$shell",
>          home => "/home/$username",
>          managehome => true,
>          password => "$password",
>          require => Group["baaderadm"],
>       }
>
>       ssh_authorized_key { $username:
>          user => "$username",
>          type => "$sshkeytype",
>          key => "$sshkey",
>          require => user["$username"],
>       }
>    }
> }
>
>

Note also, by the way, that the version of class admin_user::add presented 
does nothing at all for you except provide a namespace for the definition 
inside.  In fact, could the problem be that its definition is not the one 
that you're actually using?  You should really put the definition in its 
own file.  For example,

modules/admin_user/manifests/useradd.pp:
----
# Promoted to the module's namespace
define admin_user::useradd ( $comment, $uid, $gid, $password, $shell, 
$sshkeytype, $sshkey) {
   # changed parameter $name to $comment to avoid
   #   colliding with the automatic variable $name
   # parameter $group was unused in the original
   # variable $homedir was unused in the original

   # This definition breaks if class admin_user::group
   # isn't declared *somewhere*.  It's not parameterized,
   # so it can safely be declared right here.
   include admin_user::group

   $username = $title

   user { $username:
      ensure => present,
      comment => "$comment",
      uid => "$uid",
      gid => "$gid",
      shell => "$shell",
      home => "/home/$username",
      managehome => true,
      password => "$password",
      require => Group["baaderadm"],
   }

   ssh_authorized_key { $username:
      user => "$username",
      type => "$sshkeytype",
      key => "$sshkey",
      # type 'User' not capitalized in the original:
      require => User["$username"],
   }
}


Also, always declare instances using the defined type's full name:

admin_user::useradd { 'user1':
  # ...
}


John

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to