Added vsroom user, fixed abusehel home directory

This commit is contained in:
Ossi Salmi 2011-04-06 11:25:18 +03:00 committed by Timo Mkinen
parent 5e9d0bbdde
commit 7788d804c6

View file

@ -176,9 +176,24 @@ class user::system {
uid => 813,
gid => 813,
comment => "Service AbuseHelper",
home => "/home/abusehel",
home => "/var/lib/ah2",
shell => "/sbin/nologin",
require => Group["abusehel"],
}
# VSRoom
@group { "vsroom":
ensure => present,
gid => 814,
}
@user { "vsroom":
uid => 814,
gid => 814,
comment => "Service VSRoom",
home => "/var/lib/vsroom",
shell => "/sbin/nologin",
require => Group["vsroom"],
}
}