This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from 5048137 Revert "Forceful BR on glib2-branding-SLE for SUSE <= 11.2." new 0838f46 x2goserver.spec: create group and user if they don't exist only. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2goserver.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 0838f4686fc0dd15c66840fecd665e38a7ea1bca Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Feb 2 23:52:47 2015 +0100 x2goserver.spec: create group and user if they don't exist only. --- x2goserver.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x2goserver.spec b/x2goserver.spec index 7875764..3131b9e 100644 --- a/x2goserver.spec +++ b/x2goserver.spec @@ -476,10 +476,10 @@ EOF %endif %pre common -if getent group x2gouser 1>/dev/null; then +if ! getent group x2gouser 1>/dev/null; then groupadd -r x2gouser fi -if getent passwd x2gouser >/dev/null; then +if ! getent passwd x2gouser >/dev/null; then useradd -r -g x2gouser -d %{_localstatedir}/lib/x2go -s /sbin/nologin \ -c "x2go" x2gouser fi -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git