diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-12-26 14:27:11 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-12-26 14:27:11 -0200 |
commit | e72d64249cdda857f93b9540357aefc34f7ef15b (patch) | |
tree | efb633e99dd8efd02dfecc332ecd274fed610602 /manifests | |
parent | 4526b72d6be7a3f07555c7a5d9d5c587ea32e1e0 (diff) | |
download | puppet-etherpad-e72d64249cdda857f93b9540357aefc34f7ef15b.tar.gz puppet-etherpad-e72d64249cdda857f93b9540357aefc34f7ef15b.tar.bz2 |
Fixing user and group definitions
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 927be2d..f45fae9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -18,14 +18,16 @@ class etherpad { require => Mysql_user["etherpad@%"], } - user { "etherpad-lite": + group { "etherpad-lite": ensure => present, allowdupe => false, } - group { "etherpad-lite": + user { "etherpad-lite": ensure => present, allowdupe => false, + gid => 'etherpad-lite', + require => Group['etherpad-lite'], } package { 'npm': |