X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=bin%2Fbackup-status;h=7c1c1830a66a6bf5a3eee26f84ae001827d9be4f;hb=8781fba9243b3bfe8037ac613f2a8056906eaf61;hp=edbdd64cc1c6fa62c553e2fc446ccbe16ef77bbf;hpb=19d844c6b25cc2f63cd4633d31b1af50dcd468f6;p=backup-script.git diff --git a/bin/backup-status b/bin/backup-status index edbdd64..7c1c183 100755 --- a/bin/backup-status +++ b/bin/backup-status @@ -13,6 +13,7 @@ NAME=`basename $0` PIDFILE="/var/run/backup-script.pid" QUICK=0 +ONLY_LATEST=0 export LC_ALL=C @@ -23,7 +24,7 @@ declare -i snapshots=0 [ -d "/usr/local/etc/backup-script.d" ] \ && conf_d="/usr/local/etc/backup-script.d" \ || conf_d="/etc/backup-script.d" -default_target="" +default_target="/var/backups" default_generations=0 # Search configuration file (last one is used as default!) @@ -80,6 +81,12 @@ Check_Stamp() { fi } +Snapshot_Info() { + echo " - Snapshot: $1" + Check_Size "$1" " " + Check_Stamp "$1/.stamp" " " +} + if [ "$1" == "-r" -o "$1" == "--running" ]; then pid="$(cat "$PIDFILE" 2>/dev/null)" if [ -n "$pid" ]; then @@ -99,6 +106,9 @@ fi while [ $# -gt 0 ]; do case "$1" in + "--latest"|"-l") + ONLY_LATEST=1 + ;; "--quick"|"-q") QUICK=1 ;; @@ -123,8 +133,6 @@ else sys="${conf_d}/"* fi -[ -r "${conf_d}/backup-script.conf" ] && source "${conf_d}/backup-script.conf" - for f in $sys; do [ -r "$f" -a -f "$f" ] || continue @@ -143,7 +151,7 @@ for f in $sys; do # Read in system configuration file source "$f" - target="$target/$system" + target="$target/$(basename "$f")" [ -d "$target" ] || continue @@ -154,13 +162,16 @@ for f in $sys; do echo "- Target: $target" if [ $generations -gt 0 ]; then - for s in $target/[0-9]*-[0-9]* $target/current; do - [ -e "$s" ] || continue - echo " - Snapshot: $s" - Check_Size "$s" " " - Check_Stamp "$s/.stamp" " " + if [ "$ONLY_LATEST" = "0" ]; then + for s in $target/[0-9]*-[0-9]* $target/current; do + [ -e "$s" ] || continue + Snapshot_Info "$s" + snapshots=$snapshots+1 + done + elif [ -e "$target/latest" ]; then + Snapshot_Info "$target/latest" snapshots=$snapshots+1 - done + fi else # Timestamp and result code Check_Size "$target"