This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from ce2f992 contrib/x2go-mini-sshbroker: white-space cleanup new f9e6084 debian/control: add psproc dependency to x2gobroker-ssh. new 52a8aee debian/x2gobroker-ssh.postinst: only reload nscd configuration if daemon is installed and actually running. Fixes: #1458. new 1a18644 debian/changelog: fixup. 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 | 20 +++++++++++++++----- debian/control | 1 + debian/x2gobroker-ssh.postinst | 4 +++- 3 files changed, 19 insertions(+), 6 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 52a8aeef7311e384889d07537183e6b4c8b695a7 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Apr 21 14:44:23 2020 +0200 debian/x2gobroker-ssh.postinst: only reload nscd configuration if daemon is installed and actually running. Fixes: #1458. Based on a patch by Stefan Baur. --- debian/changelog | 3 +++ debian/x2gobroker-ssh.postinst | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 85985e9..1d07af6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,9 @@ x2gobroker (0.0.4.2-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.0.4.2): * debian/control: + Add psproc dependency to x2gobroker-ssh. We'll need it later on. + * debian/x2gobroker-ssh.postinst: + + Only reload nscd configuration if daemon is installed and actually + running. Fixes: #1458. Based on a patch by Stefan Baur. -- X2Go Release Manager <git-admin@x2go.org> Mon, 22 Apr 2019 12:31:49 +0200 diff --git a/debian/x2gobroker-ssh.postinst b/debian/x2gobroker-ssh.postinst index 3467bc3..ce94e8f 100755 --- a/debian/x2gobroker-ssh.postinst +++ b/debian/x2gobroker-ssh.postinst @@ -67,7 +67,9 @@ case "$1" in # invalidate group cache before proceeding... if which nscd 1>/dev/null; then - nscd -i group + ps -C nscd 1>/dev/null; then + nscd -i group + fi fi else -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 1a18644d9fc40b8810804ec4b4caea84dfa14791 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Apr 21 14:47:26 2020 +0200 debian/changelog: fixup. --- debian/changelog | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1d07af6..649c49e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,15 @@ x2gobroker (0.0.4.2-0x2go1) UNRELEASED; urgency=medium [ Mike Gabriel ] - * etc/x2gobroker.conf: Fix typo in command example." - * x2gobroker/defaults.py: Hint that there is a new feature in X2Go: X2Go - KDrive. + * New upstream version (0.0.4.2): + - etc/x2gobroker.conf: Fix typo in command example." + - x2gobroker/defaults.py: Hint that there is a new feature in X2Go: X2Go + KDrive. [ Stefan Baur ] - * contrib/x2go-mini-sshbroker: Contribute Bash script that demonstrate - a simple X2Go SSH Broker written in Bash. (Fixes: 1459). + * New upstream version (0.0.4.2): + - contrib/x2go-mini-sshbroker: Contribute Bash script that demonstrate + a simple X2Go SSH Broker written in Bash. (Fixes: 1459). [ Mihai Moldovan ] * New upstream version (0.0.4.2): -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit f9e6084d4d31f2d6594ccb11efb7abb1b34c99e3 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Apr 21 14:43:33 2020 +0200 debian/control: add psproc dependency to x2gobroker-ssh. We'll need it later on. --- debian/changelog | 5 +++++ debian/control | 1 + 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index d89ac2d..85985e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,11 @@ x2gobroker (0.0.4.2-0x2go1) UNRELEASED; urgency=medium * contrib/x2go-mini-sshbroker: Contribute Bash script that demonstrate a simple X2Go SSH Broker written in Bash. (Fixes: 1459). + [ Mihai Moldovan ] + * New upstream version (0.0.4.2): + * debian/control: + + Add psproc dependency to x2gobroker-ssh. We'll need it later on. + -- X2Go Release Manager <git-admin@x2go.org> Mon, 22 Apr 2019 12:31:49 +0200 x2gobroker (0.0.4.1-0x2go1) unstable; urgency=medium diff --git a/debian/control b/debian/control index 6c2569b..74d6788 100644 --- a/debian/control +++ b/debian/control @@ -321,6 +321,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, + procps, x2gobroker (>= ${source:Version}), x2gobroker (<< ${source:Version}.1~), Description: X2Go Session Broker (SSH broker) X2Go is a server based computing environment with -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git