diff options
author | Micah Anderson <micah@riseup.net> | 2008-02-13 16:57:54 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-02-13 16:57:54 +0000 |
commit | 3d1389c7fe72aaf27bb6bd2f9c759954a853f754 (patch) | |
tree | 7e4a4c953124af9d7e12a224ab66b15073553b68 /handlers | |
parent | ef9e8e0dc2359e114412369d12d21e3d7997e123 (diff) | |
download | backupninja-3d1389c7fe72aaf27bb6bd2f9c759954a853f754.tar.gz backupninja-3d1389c7fe72aaf27bb6bd2f9c759954a853f754.tar.bz2 |
move -maxdepth 1 option before -type d due to find giving this warning when it is after:
find: warning: you have specified the -maxdepth option after a
non-option argument -type, but options are not positional (-maxdepth
affects tests specified before it as well as those specified after
it). Please specify options before other arguments.
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/maildir.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/handlers/maildir.in b/handlers/maildir.in index 7a68e85..34668fb 100644 --- a/handlers/maildir.in +++ b/handlers/maildir.in @@ -157,7 +157,7 @@ function do_rotate() { fi # Rotate the current list of backups, if we can. - oldest=\`find $backuproot -type d -maxdepth 1 -name \$rottype'.*' | @SED@ 's/^.*\.//' | sort -n | tail -1\` + oldest=\`find $backuproot -maxdepth 1 -type d -name \$rottype'.*' | @SED@ 's/^.*\.//' | sort -n | tail -1\` #echo "Debug: oldest \$oldest" [ "\$oldest" == "" ] && oldest=0 for (( i=\$oldest; i > 0; i-- )); do @@ -201,7 +201,7 @@ function do_rotate() { for rottype in daily weekly monthly; do max=\$((keep\${rottype}+1)) dir="$backuproot/\$rottype" - oldest=\`find $backuproot -type d -maxdepth 1 -name \$rottype'.*' | @SED@ 's/^.*\.//' | sort -n | tail -1\` + oldest=\`find $backuproot -maxdepth 1 -type d -name \$rottype'.*' | @SED@ 's/^.*\.//' | sort -n | tail -1\` [ "\$oldest" == "" ] && oldest=0 # if we've rotated the last backup off the stack, remove it. for (( i=\$oldest; i >= \$max; i-- )); do |