diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-10 11:01:15 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-10 11:01:15 +0200 |
commit | 95e01b859cc5aca85e847a2f755cce03ab61c4e6 (patch) | |
tree | 21b7bbdd3d3a4136f5210734794924d0d3022f8b /bin | |
parent | abf5265550b3aa79a498348a398ae8324a1731ad (diff) | |
download | jenkins.debian.net-95e01b859cc5aca85e847a2f755cce03ab61c4e6.tar.xz |
reproducible: call schroot without sudo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 4d0b4353..798bde22 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -52,7 +52,7 @@ if [ ! -z "$OLDSTUFF" ] ; then fi # remove old and unused schroot sessions -ps fax|grep -v grep |grep schroot || for i in $(sudo schroot --all-sessions -l ) ; do ps fax|grep -v grep |grep schroot || sudo schroot -e -c $i ; done +ps fax|grep -v grep |grep schroot || for i in $(schroot --all-sessions -l ) ; do ps fax|grep -v grep |grep schroot || schroot -e -c $i ; done # to explain this: # first, check if no process using "schroot" is running... # then loop through all schroot sessions |