diff options
author | intrigeri <intrigeri@boum.org> | 2006-07-13 20:30:13 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2006-07-13 20:30:13 +0000 |
commit | 90316a33524fe051cbe110904391f317df13a7ac (patch) | |
tree | 7282d91e17db37d707cdd16b4c5f777248bc78d1 /src/backupninja.in | |
parent | 4a3b1063de0ce23f601f2f2d1f465f3efa741a33 (diff) | |
download | backupninja-90316a33524fe051cbe110904391f317df13a7ac.tar.gz backupninja-90316a33524fe051cbe110904391f317df13a7ac.tar.bz2 |
backupninja and ninjahelper: have find following symlinks for config files also work on sarge, by replacing -L with -follow
Diffstat (limited to 'src/backupninja.in')
-rwxr-xr-x | src/backupninja.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backupninja.in b/src/backupninja.in index fb6cc16..e4f5ea7 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -476,7 +476,7 @@ errormsg="" if [ "$singlerun" ]; then files=$singlerun else - files=`find -L $configdirectory -mindepth 1 -maxdepth 1 -type f ! -name '.*.swp' | sort -n` + files=`find $configdirectory -follow -mindepth 1 -maxdepth 1 -type f ! -name '.*.swp' | sort -n` if [ -z "$files" ]; then fatal "No backup actions configured in '$configdirectory', run ninjahelper!" |