X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=bpcdump;h=254038a2a48ccbffd6fc358e546af1f08e7b3553;hb=38952dc8c032aff8c7895fecd1faada765b991e8;hp=0693e001ec3fc728d36ee1b1da07b8b653ebd6f6;hpb=2289d8cb0089b72802c6a39cdce181d57cf239a8;p=ovzbpc.git diff --git a/bpcdump b/bpcdump index 0693e00..254038a 100755 --- a/bpcdump +++ b/bpcdump @@ -1,7 +1,9 @@ #!/bin/bash # # bpcdump -# Copyright (C) 2008 by Titanium Mirror, Inc. +# Version: __appVersion__ +# +# Copyright (C) 2008-2012 by Titanium Mirror, Inc. # Author: R. Steve McKown # # Dumps the BPC VEID to external storage. It must have its storage on a @@ -26,12 +28,20 @@ CONF_DIR=/etc/vz/conf info() { - echo "$*" | tee -a "$INFO" + if [ -n "$INFO" ]; then + echo "$*" | tee -a "$INFO" + else + echo "$*" + fi } error() { - echo "$*" | tee -a "$INFO" >&2 + if [ -n "$INFO" ]; then + echo "$*" | tee -a "$INFO" >&2 + else + echo "$*" + fi } restartve() @@ -146,12 +156,16 @@ else cleanup 1 "VEID private fs must be mounted to determine its size" fi -# Before we begin writing, remove old backup dirs until we have room +# Before we begin writing, remove old backup dirs until we have room. +# Assume backups for any VE are fair game for removal if space is needed. +# Other disk contents shall not be removed. dstblks=$(df -P "$EXTFS" | grep "$EXTFS" | awk '{ print $4 }') while [ $dstblks -le $srcblks ]; do info "Only $dstblks free on $EXTFS" - oldest=$(cd $EXTFS && eval ls -td "ve${VEID}*" 2>/dev/null | tail -1) - if [ -d "$EXTFS/$oldest" ]; then + oldest=$(cd $EXTFS && eval ls -td "ve[0-9]*" 2>/dev/null | tail -1) + if [ -z "$oldest" ]; then + cleanup 1 "out of space: need $srcblks KB, have $dstblks KB" + elif [ -d "$EXTFS/$oldest" ]; then info "Removing old backup $oldest from $EXTFS" rm -rf "$EXTFS/$oldest" else