diff --git a/backup.sh b/backup.sh index 656e18d..0408b16 100755 --- a/backup.sh +++ b/backup.sh @@ -54,25 +54,24 @@ populate_datasets() case $option in "nosnap"* ) snapshot_dataset="" - debug "Disabled snapshot of $dataset." ;; "nosend"* ) send_dataset="" - debug "Disabled send of $dataset." ;; "remotezfs="*) remotezfs=`echo $option|cut -d'=' -f2` dataset="$dataset:$remotezfs" - debug "Set remote dataset for $dataset." ;; esac done if [ $send_dataset ]; then SEND_DATASETS="$SEND_DATASETS $dataset" + debug "Added $dataset for sending." fi if [ $snapshot_dataset ]; then SNAPSHOT_DATASETS="$SNAPSHOT_DATASETS $dataset" + debug "Added $dataset for snapshot." fi done < datasets.txt }