Fix user definitions
This commit is contained in:
parent
97b9a4b3e7
commit
51166a1f8f
1 changed files with 2 additions and 2 deletions
|
@ -13,13 +13,12 @@
|
||||||
class rhizo_base::users {
|
class rhizo_base::users {
|
||||||
|
|
||||||
$password_hash = $rhizo_base::password_hash
|
$password_hash = $rhizo_base::password_hash
|
||||||
$pgsql_pwd = $rhizo_base::pgsql_pwd
|
|
||||||
|
|
||||||
user { 'rhizomatica':
|
user { 'rhizomatica':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
gid => 'rhizomatica',
|
gid => 'rhizomatica',
|
||||||
home => '/home/rhizomatica',
|
home => '/home/rhizomatica',
|
||||||
password => $rhizo::password_hash,
|
password => Sensitive($password_hash),
|
||||||
uid => '1000',
|
uid => '1000',
|
||||||
purge_ssh_keys => true
|
purge_ssh_keys => true
|
||||||
}
|
}
|
||||||
|
@ -34,6 +33,7 @@ class rhizo_base::users {
|
||||||
uid => '2000',
|
uid => '2000',
|
||||||
gid => 'users',
|
gid => 'users',
|
||||||
groups => 'operator',
|
groups => 'operator',
|
||||||
|
membership => inclusive,
|
||||||
home => '/home/tic',
|
home => '/home/tic',
|
||||||
shell => '/bin/bash',
|
shell => '/bin/bash',
|
||||||
managehome => true,
|
managehome => true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue