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 d4df200 Hack for x2goserver-xsession/Makefile during SUSE builds. If directoy /usr/share/doc/packages/brp-check-suse is present, the build env is also considered to be a SUSE system. new 1af926f x2gosqlitewrapper.c: Fix rpmlint error: no-return-in-nonvoid-function. Return the exitcode of execve(). new 217408c x2goserver.spec: More scriptlet fixes. new 15e5800 x2goserver.spec: Own some more directories. The 3 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 | 2 ++ x2goserver.spec | 8 ++++++-- x2goserver/x2gosqlitewrapper.c | 2 +- 3 files changed, 9 insertions(+), 3 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 1af926faeabf15b66e0e83f577fac1cbfbda710e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Oct 13 16:54:44 2014 +0200 x2gosqlitewrapper.c: Fix rpmlint error: no-return-in-nonvoid-function. Return the exitcode of execve(). --- debian/changelog | 2 ++ x2goserver/x2gosqlitewrapper.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7f8126a..c59de3e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,8 @@ x2goserver (4.0.1.19-0x2go1) UNRELEASED; urgency=medium is also considered to be a SUSE system. - Trigger Xsession code for SUSE systems (look for /etc/SUSE-brand for SUSE system recognition). + - x2gosqlitewrapper.c: Fix rpmlint error: no-return-in-nonvoid-function. + Return the exitcode of execve(). * debian/control: + Add D (x2goserver): libfile-which-perl. * x2goserver.spec: diff --git a/x2goserver/x2gosqlitewrapper.c b/x2goserver/x2gosqlitewrapper.c index 799118f..6084c4e 100644 --- a/x2goserver/x2gosqlitewrapper.c +++ b/x2goserver/x2gosqlitewrapper.c @@ -27,6 +27,6 @@ int main( int argc, char *argv[] ) { argv[0] = "x2gosqlitewrapper.pl"; // execute the script, running with user-rights of this binary - execv(x2gosqlitewrapper, argv); + return execv(x2gosqlitewrapper, argv); } -- 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 217408c42c2c5a0d87d094d9d11532c356d927e3 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Oct 13 17:02:33 2014 +0200 x2goserver.spec: More scriptlet fixes. --- x2goserver.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x2goserver.spec b/x2goserver.spec index 12e2aef..37e1bf2 100644 --- a/x2goserver.spec +++ b/x2goserver.spec @@ -257,8 +257,8 @@ exit 0 %post # Initialize the session database -[ ! -s %{_sharedstatedir}/x2go/x2go_sessions ] && - egrep "^backend=sqlite.*" /etc/x2go/x2gosql/sql >/dev/null 2>&1 && +[ ! -s %{_sharedstatedir}/x2go/x2go_sessions ] && \ + egrep "^backend=sqlite.*" /etc/x2go/x2gosql/sql >/dev/null 2>&1 && \ %{_sbindir}/x2godbadmin --createdb >/dev/null 2>&1 || : %if 0%{?fedora} || 0%{?rhel} >= 7 -- 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 15e58000c85ac86dfbc0384bb73c8063510bf5e0 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Oct 13 17:06:55 2014 +0200 x2goserver.spec: Own some more directories. --- x2goserver.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x2goserver.spec b/x2goserver.spec index 37e1bf2..df990e5 100644 --- a/x2goserver.spec +++ b/x2goserver.spec @@ -306,7 +306,10 @@ exit 0 %files %doc debian/copyright %doc debian/changelog +%dir %{_sysconfdir}/logcheck +%dir %{_sysconfdir}/logcheck/ignore.d.server %config(noreplace) %{_sysconfdir}/logcheck/ignore.d.server/x2goserver +%dir %{_sysconfdir}/sudoers.d %config(noreplace) %{_sysconfdir}/sudoers.d/x2goserver %dir %{_sysconfdir}/x2go/ %config(noreplace) %{_sysconfdir}/x2go/x2go* @@ -342,6 +345,7 @@ exit 0 %exclude %{_mandir}/man8/x2goserver-run-extensions.8* %exclude %{_mandir}/man8/x2gofm.8* %exclude %{_mandir}/man8/x2goprint.8* +%dir %{_datadir}/x2go/ %dir %{_datadir}/x2go/x2gofeature.d/ %{_datadir}/x2go/x2gofeature.d/x2goserver.features %{_datadir}/x2go/versions/VERSION.x2goserver -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git