diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-19 11:01:52 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-19 11:01:52 +0200 |
commit | 1289f1d65cd268f5eecf3b335fd52845073893d4 (patch) | |
tree | 6cbaa8f231d878c303e097bf53cac3e56fbaa249 | |
parent | 273c03b6663bae91ee9088cf12745660e3785c2b (diff) | |
download | jenkins.debian.net-1289f1d65cd268f5eecf3b335fd52845073893d4.tar.xz |
fix cute denglish typo
-rwxr-xr-x | bin/reproducible_housekeeping.sh | 6 | ||||
-rw-r--r-- | logparse/reproducible.rules | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/bin/reproducible_housekeeping.sh b/bin/reproducible_housekeeping.sh index 18007dcb..99efc280 100755 --- a/bin/reproducible_housekeeping.sh +++ b/bin/reproducible_housekeeping.sh @@ -37,7 +37,7 @@ fi OLDSTUFF=$(find $REP_RESULTS -type d -name "tmp.*" -mtime +7 -exec ls -lad {} \;) if [ ! -z "$OLDSTUFF" ] ; then echo - echo "Warnung: old temp directories found in $REP_RESULTS" + echo "Warning: old temp directories found in $REP_RESULTS" echo "$OLDSTUFF" echo "Please cleanup manually." echo @@ -47,7 +47,7 @@ fi OLDSTUFF=$(find /var/cache/pbuilder/result/ -mtime +7 -exec ls -lad {} \;) if [ ! -z "$OLDSTUFF" ] ; then echo - echo "Warnung: old temp directories found in /var/cache/pbuilder/result/" + echo "Warning: old temp directories found in /var/cache/pbuilder/result/" echo "$OLDSTUFF" echo "Please cleanup manually." echo @@ -63,7 +63,7 @@ for ZOMBIE in $(pgrep -u 1234 -P 1) ; do done if [ -s $RESULT ] ; then echo - echo "Warnung: processes found which should not be there:" + echo "Warning: processes found which should not be there:" cat $RESULT echo echo "Please cleanup manually." diff --git a/logparse/reproducible.rules b/logparse/reproducible.rules index 16e5ef5f..742a6c33 100644 --- a/logparse/reproducible.rules +++ b/logparse/reproducible.rules @@ -4,6 +4,6 @@ warning /Warning: .+ is not a source package, or was removed or renamed. Please investigate./ warning /Warning: Download of .+ sources failed./ warning /Warning: .+ contains invalid yaml, please fix./ -warning /Warnung: old temp directories found in .+/ -warning /Warnung: lock .+ still exists, exiting./ -warning /Warnung: processes found which should not be there/ +warning /Warning: old temp directories found in .+/ +warning /Warning: lock .+ still exists, exiting./ +warning /Warning: processes found which should not be there/ |