X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=backupninja;h=81b1a17896412ef8eb5e8943291885b5e9ba0907;hb=b808ac3de7a5abc0b8b6fd1409ba397056b3c56b;hp=fb5437824c0f772fad63f9f570b8dd8cdb32e120;hpb=22f728f7c57b4cdb3d01c9ce0d361e3c5845e4c4;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/backupninja b/backupninja index fb54378..81b1a17 100755 --- a/backupninja +++ b/backupninja @@ -352,6 +352,17 @@ while [ $# -ge 1 ]; do # we shift here to avoid processing the file path shift ;; + --run) + if [ -f $2 ]; then + singlerun=$2 + processnow=1 + debug=1 + else + fatal "--run option must be fallowed by a backupninja action file" + usage + fi + shift + ;; *) fatal "Unknown option $1" usage @@ -406,7 +417,13 @@ warnings=0 actions_run=0 errormsg="" -for file in $configdirectory/*; do +if [ "$singlerun" ]; then + files=$singlerun +else + files=`ls $configdirectory` +fi + +for file in $files; do [ -f $file ] || continue; check_perms $file @@ -424,7 +441,7 @@ for file in $configdirectory/*; do msg "*missing handler* -- $file" fi done - + ## mail the messages to the report address if [ $actions_run == 0 ]; then doit=0