Added etherpadlite module and system user

This commit is contained in:
Ossi Salmi 2012-07-17 16:41:56 +03:00
parent b3446cb48e
commit 7752295779
2 changed files with 29 additions and 0 deletions

View file

@ -231,6 +231,19 @@ class user::system {
require => Group["qemu"],
}
# Etherpad
@group { "etherpad":
ensure => present,
gid => 816,
}
@user { "etherpad":
uid => 816,
gid => 816,
comment => "Service Etherpad",
home => "/var/lib/etherpad",
shell => "/sbin/nologin",
require => Group["etherpad"],
}
}