diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-09 17:41:41 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-09 17:41:41 +0200 |
commit | 9a37d8b6ac3dc7df68f03d9e1c68967e52f6edb1 (patch) | |
tree | 20f614b4c12c0323cb7e0e95113aa11076150f37 /bin | |
parent | acaeeaa2ca4c34919a287bd7901011c49288cf56 (diff) | |
download | jenkins.debian.net-9a37d8b6ac3dc7df68f03d9e1c68967e52f6edb1.tar.xz |
reproducible: fix meaning of explaination
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 5edbc6a0..cdcaacdb 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -63,7 +63,7 @@ ps fax|grep -v grep |grep schroot || for i in $(sudo schroot --all-sessions -l ) OLDSTUFF=$(find /schroots/ -maxdepth 1 -type d -regextype posix-extended -regex "/schroots/reproducible-.*-[0-9]{1,5}" -mtime +2 -exec ls -lad {} \;) if [ ! -z "$OLDSTUFF" ] ; then echo - echo "Old schroots found in /schroots, which have been deleted:" + echo "Old schroots found in /schroots, which will be deleted:" find /schroots/ -maxdepth 1 -type d -regextype posix-extended -regex "/schroots/reproducible-.*-[0-9]{1,5}" -mtime +2 -exec sudo rm -rf --one-file-system {} \; echo "$OLDSTUFF" OLDSTUFF=$(find /schroots/ -maxdepth 1 -type d -regextype posix-extended -regex "/schroots/reproducible-.*-[0-9]{1,5}" -mtime +2 -exec ls -lad {} \;) |