Make user
This commit is contained in:
parent
3cce88d702
commit
530a78c3b5
2 changed files with 12 additions and 0 deletions
|
@ -5,6 +5,7 @@ node default {
|
||||||
|
|
||||||
include stdlib
|
include stdlib
|
||||||
|
|
||||||
|
include common
|
||||||
include yaourt
|
include yaourt
|
||||||
include gnome
|
include gnome
|
||||||
include config
|
include config
|
||||||
|
|
11
modules/common/manifests/init.pp
Normal file
11
modules/common/manifests/init.pp
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
class common {
|
||||||
|
user { "make me":
|
||||||
|
name => "jake",
|
||||||
|
allowdupe => false,
|
||||||
|
auth_membership => "inclusive",
|
||||||
|
comment => "Jake Howard",
|
||||||
|
home => "/home/jake",
|
||||||
|
shell => "/usr/bin/zsh",
|
||||||
|
uid => "1000",
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue