X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=bin%2Fbackup-status;h=68a7d1f8334feab9b4c6d02fb44fff56eca7edc5;hb=71f066fced8907d969cddff1d8e83920ce6fd16a;hp=32ef7c471f2660f2a71c461e8e497bbad7875dba;hpb=4707fb207f10c500aa30b21a69ec1ea27e8b76d9;p=backup-script.git diff --git a/bin/backup-status b/bin/backup-status index 32ef7c4..68a7d1f 100755 --- a/bin/backup-status +++ b/bin/backup-status @@ -11,7 +11,10 @@ # NAME=`basename $0` +PIDFILE="/var/run/backup-script.pid" QUICK=0 +ONLY_ERRORS=0 +ONLY_LATEST=0 export LC_ALL=C @@ -19,22 +22,43 @@ declare -i count=0 declare -i snapshots=0 # Default settings, can be overwritten in backup-script.conf: -conf_d="/etc/backup-script.d" -default_target="" +[ -d "/usr/local/etc/backup-script.d" ] \ + && conf_d="/usr/local/etc/backup-script.d" \ + || conf_d="/etc/backup-script.d" +default_target="/var/backups" default_generations=0 -for conf in "/etc/backup-script.conf" "${conf_d}/backup-script.conf"; do +# Search configuration file (last one is used as default!) +for conf in \ + "/usr/local/etc/backup-script.conf" \ + "/etc/backup-script.conf" \ + "${conf_d}/backup-script.conf" \ + "/usr/local/etc/backup-script.conf" \ +; do if [ -r "$conf" ]; then source "$conf" + break fi done +Usage() { + echo "Usage: $NAME [--errors|--latest] [--quick] [ [ [...]]]" + echo " $NAME --running" + echo + echo " --errors, -e Only show current backups with errors (implies \"--latest\")." + echo " --latest, -l Only show latest backup generations." + echo " --quick, -q Don't calculate backup sizes." + echo " --running, -r Check if an \"backup-script\" task is currently running." + echo + exit 2 +} + Check_Size() { # $1: directory # $2: padding if [ "$QUICK" = "0" ]; then - size=`du -sh "$1" | cut -f1` + size=`du -Hhs "$1" | cut -f1` echo "$2 - Size:" $size fi } @@ -44,14 +68,14 @@ Check_Stamp() { # $2: padding if [ -f "$1" ]; then - if [ `uname` = "Linux" ]; then + if [ "$(uname)" = "Linux" ]; then last=`LC_ALL=C stat "$1" | grep "^Modify: " \ | cut -d':' -f2- | cut -d. -f1` else last=`LC_ALL=C stat -f "%Sc" "$1"` fi [ -n "$last" ] && echo "$2 - Date:" $last - unset code + code= source "$1" case "$code" in 0) txt=", OK"; ;; @@ -64,20 +88,59 @@ Check_Stamp() { fi } -if [ "$1" == "-q" ]; then - QUICK=1 - shift -fi +Snapshot_Info() { + echo " - Snapshot: $1" + Check_Size "$1" " " + Check_Stamp "$1/.stamp" " " +} -case "$1" in - "-"*) - echo "Usage: $NAME [-q] [ [ [...]]]" +Get_Result_Code() { + code=1 + [ -r "$1" ] && source "$1" + [ -z "$code" ] && code=1 + echo $code +} + +if [ "$1" == "-r" -o "$1" == "--running" ]; then + pid="$(cat "$PIDFILE" 2>/dev/null)" + if [ -n "$pid" ]; then + if kill -0 "$pid" >/dev/null 2>&1; then + echo "Backup job running with PID $pid." + echo + pstree -ap "$pid" 2>/dev/null + exit 0 + else + echo "No backup running (invalid PID $pid in \"$PIDFILE\")." + exit 1 + fi + fi + echo "No backup running (no PID file \"$PIDFILE\" found)." exit 1 - ;; -esac +fi + +while [ $# -gt 0 ]; do + case "$1" in + "--errors"|"-e") + ONLY_ERRORS=1 + ONLY_LATEST=1 + ;; + "--latest"|"-l") + ONLY_LATEST=1 + ;; + "--quick"|"-q") + QUICK=1 + ;; + "-"*) + Usage + ;; + *) + break + esac + shift +done if [ $# -ge 1 ]; then - for s in $@; do + for s in "$@"; do if [ ! -r "${conf_d}/$s" ]; then echo "$NAME: Can' read \"${conf_d}/$s\"!" exit 1 @@ -85,11 +148,9 @@ if [ $# -ge 1 ]; then sys="$sys ${conf_d}/$s" done else - sys=${conf_d}/* + 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 @@ -108,14 +169,17 @@ for f in $sys; do # Read in system configuration file source "$f" - # Validate configuration - [ "$system" = "localhost" -o "$system" = "127.0.0.1" ] && local=1 - - destdir="$target" - target="$target/$fname" + target="$target/$(basename "$f")" [ -d "$target" ] || continue + if [ "$ONLY_ERRORS" != "0" ]; then + [ $generations -gt 0 ] \ + && result=$(Get_Result_Code "$target/latest/.stamp") \ + || result=$(Get_Result_Code "$target/.stamp") + [ $result -eq 0 -o $result -eq 24 ] && continue + fi + # System name [ "$system" = "$fname" ] && echo "$fname" || echo "$fname [$system]" @@ -123,12 +187,16 @@ for f in $sys; do echo "- Target: $target" if [ $generations -gt 0 ]; then - for s in $target/[0-9]*-[0-9]*; do - 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"