This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch release/4.0.1.x in repository x2goserver. from 7fed553 Add man page for x2gogetapps. Weave into that a security / disclaimer message as proposed by Stefan Baur. (Fixes: #728). new 89af59d Use if then clauses for creating user/group x2goprint. 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: debian/changelog | 1 + x2goserver.spec | 10 ++++++---- 2 files changed, 7 insertions(+), 4 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 release/4.0.1.x in repository x2goserver. commit 89af59d3fcb67ade285602126df2aa3f5bc5e096 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Feb 9 14:02:29 2015 +0100 Use if then clauses for creating user/group x2goprint. --- debian/changelog | 1 + x2goserver.spec | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index d58144d..69368ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -120,6 +120,7 @@ x2goserver (4.0.1.19-0x2go1) UNRELEASED; urgency=medium 11.3. Using "%run permissions" and "%verify permissions" instead. + On SUSE, add permissions.d/x2goserver. + Fix SQLite wrapper permissions (02775 -> 02755) + + Use if then clauses for creating user/group x2goprint. [ Matthew L. Dailey ] * New upstream version (4.0.1.19): diff --git a/x2goserver.spec b/x2goserver.spec index 6db264a..0b89c98 100644 --- a/x2goserver.spec +++ b/x2goserver.spec @@ -446,11 +446,13 @@ fi %pre printing -getent group x2goprint 1>/dev/null || groupadd -r x2goprint -getent passwd x2goprint 1>/dev/null || \ +if ! getent group x2goprint 1>/dev/null; then + groupadd -r x2goprint +fi +if ! getent passwd x2goprint 1>/dev/null; then useradd -r -g x2goprint -d /var/spool/x2goprint -s /sbin/nologin \ - -c "x2go" x2goprint - + -c "x2go" x2goprint +fi %files %defattr(-,root,root) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git