Lines Matching refs:backupDir

1323 	local backupDir="${1}"
1348 if [ -d "$backupDir" ]; then
1350 find "$backupDir" -mindepth 3 -maxdepth 3 -type f -name "backup_stats" | grep -e '.*' > /dev/null
1352 …Logger "The directory [$backupDir] does not seem to be a @name@ folder. Please check the path. Add…
1373 if [ -d "$backupDir" ]; then
1374 …find "$backupDir" -mindepth 1 -maxdepth 1 -type d | sed -e "s/\(.*\)\/\(.*\)/\2/g" > "$RUN_DIR/$PR…
1377 …find "$backupDir$client" -mindepth 2 -maxdepth 2 -type f -name "backup_stats" | grep -e '.*' > /de…
1422 if [ -f "$backupDir$client/current/timestamp" ]; then
1424 elif [ -d "$backupDir" ]; then
1489 local backupDir="${1}"
1511 …find "$backupDir$client" -mindepth 2 -maxdepth 2 -type f -name "backup_stats" | sort -nr | head -n…
1547 local backupDir="${1}"
1560 if [ -f "$backupDir$client/current/backup_stats" ]; then
1562 …$(awk '/"name": "time_end"/{p=1}{if(p>0){p=p+1}}{if(p==4){print $2}}' "$backupDir$client/current/b…
1593 local backupDir="${1}"
1607 lastBackupDir=$(find "$backupDir$client" -maxdepth 2 -name "*current")
1608 if [ -f "$backupDir$client/current/log.gz" ]; then
1646 local backupDir="${1}"
1655 if [ -f "$backupDir$client/current/log.gz" ]; then
1656 if zcat "$backupDir$client/current/log.gz" | grep "WARNING" > /dev/null 2>&1; then
1658 Logger "$(zcat $backupDir$client/current/log.gz | grep WARNING)" "WARN"
1661 elif [ -f "$backupDir$client/current/log" ]; then
1662 if cat "$backupDir$client/current/log" | grep "WARNING" > /dev/null 2>&1; then
1664 Logger "$(grep WARNING $backupDir$client/current/log)" "WARN"
1668 Logger "No log file found for warning analysis in [$backupDir$client/current]." "WARN"