]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/base_installation/manifests/users.pp
Start to cleanup the files
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / users.pp
1 class base_installation::users (
2 $users = $base_installation::system_users,
3 ) inherits base_installation {
4 ensure_packages('ruby-shadow')
5 user { 'root':
6 password => '!'
7 }
8
9 class { 'sudo':
10 config_file_replace => false,
11 # Missing in the sudo package, should no be mandatory
12 package_ldap => false
13 }
14
15 sudo::conf { 'wheel':
16 priority => 10,
17 content => "%wheel ALL=(ALL) ALL"
18 }
19
20 contain "sudo"
21
22 $users.each |$user| {
23 user { "${user[username]}:${user[userid]}":
24 name => $user[username],
25 uid => $user[userid],
26 ensure => "present",
27 groups => $user[groups],
28 managehome => true,
29 system => !!$user[system],
30 home => "/home/${user[username]}",
31 notify => Exec["remove_password:${user[username]}:${user[userid]}"],
32 purge_ssh_keys => true
33 }
34
35 exec { "remove_password:${user[username]}:${user[userid]}":
36 command => "/usr/bin/chage -d 0 ${user[username]} && /usr/bin/passwd -d ${user[username]}",
37 onlyif => "/usr/bin/test -z '${user[password]}'",
38 refreshonly => true
39 }
40
41 if has_key($user, "keys") {
42 $user[keys].each |$key| {
43 ssh_authorized_key { "${user[username]}@${key[host]}":
44 name => "${user[username]}@${key[host]}",
45 user => $user[username],
46 type => $key[key_type],
47 key => $key[key],
48 }
49 }
50 }
51 }
52
53 }