backupninja and ninjahelper: have find following symlinks for config files also work...
[matthijs/upstream/backupninja.git] / src / backupninja.in
index 16ac7a7dc5e5417ffeae1f64b23b427ea4a562f8..e4f5ea73dc53afd6084b5c6563240e0a14d6c0a1 100755 (executable)
@@ -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!"
@@ -526,7 +526,7 @@ if [ $doit == 1 ]; then
                        echo ${messages[$i]}
                done
                echo -e "$errormsg"
-       } | mail $reportemail -s "backupninja: $hostname $subject"
+       } | mail -s "backupninja: $hostname $subject" $reportemail
 fi
 
 if [ $actions_run != 0 ]; then