This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository maintenancescripts. from 7d1ae0d git/misc/setup-repository: use our new git hooks, use symlinks, add common.sh and don't deny non-fast forwards by default. new a7c785d git/misc/update-repository-posixacls: play it safe, use bash. new 3ab8eb2 git/misc/update-repository-posixacls: reword comment. new bc831e5 git/misc/update-repository-posixacls: use pushd and popd instead of cd. new 9c64f84 git/misc/update-repository-posixacls: whitespace changes only. new d1250ed git/misc/update-repository-posixacls: use more curly braces. The 5 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: git/misc/update-repository-posixacls | 55 +++++++++++++++++----------------- 1 file changed, 27 insertions(+), 28 deletions(-) -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository maintenancescripts. commit a7c785d2372bb665362a4e4d2ed2c4d1b2d70fe9 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Mar 9 01:56:14 2015 +0100 git/misc/update-repository-posixacls: play it safe, use bash. --- git/misc/update-repository-posixacls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/misc/update-repository-posixacls b/git/misc/update-repository-posixacls index ae3c663..bed71e6 100755 --- a/git/misc/update-repository-posixacls +++ b/git/misc/update-repository-posixacls @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # This script is used to move ownership of certain repos files after setup # from x2go user to x2go-admin user -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository maintenancescripts. commit 3ab8eb2d6f2f6a837b372b7a320601b8bf1fccd1 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Mar 9 01:56:46 2015 +0100 git/misc/update-repository-posixacls: reword comment. --- git/misc/update-repository-posixacls | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/misc/update-repository-posixacls b/git/misc/update-repository-posixacls index bed71e6..1d6bdbb 100755 --- a/git/misc/update-repository-posixacls +++ b/git/misc/update-repository-posixacls @@ -1,7 +1,7 @@ #!/bin/bash -# This script is used to move ownership of certain repos files after setup -# from x2go user to x2go-admin user +# This script is used to transfer the ownership of certain repo files +# from the 'x2go' user to the 'x2go-admin' user after initial setup. set -e -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository maintenancescripts. commit bc831e563849ff5449e864b34f71f92903833c48 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Mar 9 01:57:37 2015 +0100 git/misc/update-repository-posixacls: use pushd and popd instead of cd. --- git/misc/update-repository-posixacls | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/git/misc/update-repository-posixacls b/git/misc/update-repository-posixacls index 1d6bdbb..0effc80 100755 --- a/git/misc/update-repository-posixacls +++ b/git/misc/update-repository-posixacls @@ -7,7 +7,7 @@ set -e PACKAGE="$1" -cd "$PACKAGE.git" +pushd "${PACKAGE}.git" # hooks [ -f hooks/post-receive.tmp ] && { @@ -54,5 +54,4 @@ cd "$PACKAGE.git" rm info/exclude.tmp } # Go back to the parent directory -cd .. - +popd -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository maintenancescripts. commit 9c64f84ec09a992ad2d4c39fdc1ae1e3225d223f Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Mar 9 01:58:12 2015 +0100 git/misc/update-repository-posixacls: whitespace changes only. --- git/misc/update-repository-posixacls | 42 +++++++++++++++++----------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/git/misc/update-repository-posixacls b/git/misc/update-repository-posixacls index 0effc80..9a05009 100755 --- a/git/misc/update-repository-posixacls +++ b/git/misc/update-repository-posixacls @@ -11,47 +11,47 @@ pushd "${PACKAGE}.git" # hooks [ -f hooks/post-receive.tmp ] && { - cp hooks/post-receive.tmp hooks/post-receive - chmod 0755 hooks/post-receive - rm hooks/post-receive.tmp + cp hooks/post-receive.tmp hooks/post-receive + chmod 0755 hooks/post-receive + rm hooks/post-receive.tmp } [ -f hooks/update.tmp ] && { - cp hooks/update.tmp hooks/update - chmod 0755 hooks/update - rm hooks/update.tmp + cp hooks/update.tmp hooks/update + chmod 0755 hooks/update + rm hooks/update.tmp } # ACLs [ -f info/allowed-users.tmp ] && { - cp info/allowed-users.tmp info/allowed-users - chmod 0640 info/allowed-users - rm info/allowed-users.tmp + cp info/allowed-users.tmp info/allowed-users + chmod 0640 info/allowed-users + rm info/allowed-users.tmp } [ -f info/allowed-groups.tmp ] && { - cp info/allowed-groups.tmp info/allowed-groups - chmod 0640 info/allowed-groups - rm info/allowed-groups.tmp + cp info/allowed-groups.tmp info/allowed-groups + chmod 0640 info/allowed-groups + rm info/allowed-groups.tmp } # configuration [ -f config.tmp ] && { - cp config.tmp config - chmod 0644 config - rm config.tmp + cp config.tmp config + chmod 0644 config + rm config.tmp } [ -f description.tmp ] && { - cp description.tmp description - chmod 0644 description - rm description.tmp + cp description.tmp description + chmod 0644 description + rm description.tmp } [ -f info/exclude.tmp ] && { - cp info/exclude.tmp info/exclude - chmod 0644 info/exclude - rm info/exclude.tmp + cp info/exclude.tmp info/exclude + chmod 0644 info/exclude + rm info/exclude.tmp } # Go back to the parent directory popd -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository maintenancescripts. commit d1250edd4de98e86c1dc8a7efdf8aec95ad04698 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Mar 9 01:58:41 2015 +0100 git/misc/update-repository-posixacls: use more curly braces. --- git/misc/update-repository-posixacls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/misc/update-repository-posixacls b/git/misc/update-repository-posixacls index 9a05009..81d87cb 100755 --- a/git/misc/update-repository-posixacls +++ b/git/misc/update-repository-posixacls @@ -5,7 +5,7 @@ set -e -PACKAGE="$1" +PACKAGE="${1}" pushd "${PACKAGE}.git" -- Alioth's /srv/git/code.x2go.org/maintenancescripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git