Fix ejabberd user for Ubuntu.

This commit is contained in:
Timo Mkinen 2011-12-08 13:57:20 +02:00
parent a06fc4bb49
commit 32956c0d26

View file

@ -59,7 +59,10 @@ class user::system {
gid => 802,
comment => "Service Jabber",
home => "/var/lib/ejabberd",
shell => "/sbin/nologin",
shell => $operatingsystem ? {
"ubuntu" => "/bin/sh",
default => "/sbin/nologin",
},
require => Group["ejabberd"],
}