This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository maintenancescripts. from e215702 killstalevms.bash: try to fix arithmetic expression. new d687df1 killstalevms.bash: more testing, more fixing. 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: killstalevms.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- Alioth's /srv/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 d687df14bcab32d2d5d6bf6ea98f0550d621aa19 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 23:41:22 2015 +0100 killstalevms.bash: more testing, more fixing. --- killstalevms.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/killstalevms.bash b/killstalevms.bash index 48a67a1..1cd7fa3 100644 --- a/killstalevms.bash +++ b/killstalevms.bash @@ -9,7 +9,8 @@ i=0 pgrep -f -u root '^kvm.*pbuilder.*qemu.*' | while read VM_PID; do VM_LIST[$i]="${VM_PID}" - i=$((i++)) + i=++i + echo $i done typeset -a BUILDER_LIST -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/maintenancescripts.git