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 369a0b558b69d1e641057e4d81be75289e49cca8 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Jan 2 04:10:22 2018 +0100 x2goserver/bin/x2gostartagent: replace perl call with bash pattern substitution. --- debian/changelog | 2 ++ x2goserver/bin/x2gostartagent | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4614bc3..2ac8412 100644 --- a/debian/changelog +++ b/debian/changelog @@ -32,6 +32,8 @@ x2goserver (4.0.1.23-0x2go1) UNRELEASED; urgency=medium that enough processes to overflow the PID + to get to the original PID value need to be spawned in a very short amount of time. Unlikely, but not impossible. + - x2goserver/bin/x2gostartagent: replace perl call with bash pattern + substitution. * x2goserver.spec: - RPMify x2goserver-xsession description. - Remove qt4 stuff, we're not using the framework here. diff --git a/x2goserver/bin/x2gostartagent b/x2goserver/bin/x2gostartagent index ad8d635..6781925 100755 --- a/x2goserver/bin/x2gostartagent +++ b/x2goserver/bin/x2gostartagent @@ -324,7 +324,7 @@ while [ "${OUTPUT}" != "inserted" ]; do SESSION_NAME="${USER}-${X2GO_PORT}-$(date "+%s")" if [ "${COLORDEPTH}" != "" ]; then SESSION_NAME="${SESSION_NAME}_st${SESSION_TYPE}${X2GO_CMD}_dp${COLORDEPTH}" - SESSION_NAME="$(perl -pe "s/:/PP/g" <<< "${SESSION_NAME}")" + SESSION_NAME="${SESSION_NAME//:/PP}" fi # sanitize session name -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goserver.git