mirror of
https://github.com/deajan/obackup.git
synced 2026-02-05 22:55:14 +01:00
Rebuilt targets
This commit is contained in:
@@ -7,7 +7,7 @@ PROGRAM="obackup"
|
|||||||
AUTHOR="(C) 2013-2018 by Orsiris de Jong"
|
AUTHOR="(C) 2013-2018 by Orsiris de Jong"
|
||||||
CONTACT="http://www.netpower.fr/obackup - ozy@netpower.fr"
|
CONTACT="http://www.netpower.fr/obackup - ozy@netpower.fr"
|
||||||
PROGRAM_VERSION=2.1-RC1
|
PROGRAM_VERSION=2.1-RC1
|
||||||
PROGRAM_BUILD=2018093006
|
PROGRAM_BUILD=2018093008
|
||||||
IS_STABLE=no
|
IS_STABLE=no
|
||||||
|
|
||||||
#### Execution order #__WITH_PARANOIA_DEBUG
|
#### Execution order #__WITH_PARANOIA_DEBUG
|
||||||
@@ -4544,6 +4544,11 @@ function RemoteLogger {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function _RotateBackupsRemoteSSH {
|
function _RotateBackupsRemoteSSH {
|
||||||
|
local backup
|
||||||
|
local copy
|
||||||
|
local cmd
|
||||||
|
local path
|
||||||
|
|
||||||
$REMOTE_FIND_CMD "$backupPath" -mindepth 1 -maxdepth 1 ! -regex ".*\.$PROGRAM\.[0-9]+" -print0 | while IFS= read -r -d $'\0' backup; do
|
$REMOTE_FIND_CMD "$backupPath" -mindepth 1 -maxdepth 1 ! -regex ".*\.$PROGRAM\.[0-9]+" -print0 | while IFS= read -r -d $'\0' backup; do
|
||||||
copy=$rotateCopies
|
copy=$rotateCopies
|
||||||
while [ $copy -gt 1 ]; do
|
while [ $copy -gt 1 ]; do
|
||||||
@@ -4570,7 +4575,7 @@ function _RotateBackupsRemoteSSH {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
copy=$((opy-1))
|
copy=$((copy-1))
|
||||||
done
|
done
|
||||||
|
|
||||||
# Latest file backup will not be moved if script configured for remote backup so next rsync execution will only do delta copy instead of full one
|
# Latest file backup will not be moved if script configured for remote backup so next rsync execution will only do delta copy instead of full one
|
||||||
@@ -4628,11 +4633,11 @@ function RotateBackups {
|
|||||||
|
|
||||||
__CheckArguments 2 $# "$@" #__WITH_PARANOIA_DEBUG
|
__CheckArguments 2 $# "$@" #__WITH_PARANOIA_DEBUG
|
||||||
|
|
||||||
Logger "Rotating backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
|
||||||
|
|
||||||
if [ "$BACKUP_TYPE" == "local" ] || [ "$BACKUP_TYPE" == "pull" ]; then
|
if [ "$BACKUP_TYPE" == "local" ] || [ "$BACKUP_TYPE" == "pull" ]; then
|
||||||
|
Logger "Rotating local backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
||||||
_RotateBackupsLocal "$backupPath" "$rotateCopies"
|
_RotateBackupsLocal "$backupPath" "$rotateCopies"
|
||||||
elif [ "$BACKUP_TYPE" == "push" ]; then
|
elif [ "$BACKUP_TYPE" == "push" ]; then
|
||||||
|
Logger "Rotating remote backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
||||||
_RotateBackupsRemote "$backupPath" "$rotateCopies"
|
_RotateBackupsRemote "$backupPath" "$rotateCopies"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
13
obackup.sh
13
obackup.sh
@@ -7,7 +7,7 @@ PROGRAM="obackup"
|
|||||||
AUTHOR="(C) 2013-2018 by Orsiris de Jong"
|
AUTHOR="(C) 2013-2018 by Orsiris de Jong"
|
||||||
CONTACT="http://www.netpower.fr/obackup - ozy@netpower.fr"
|
CONTACT="http://www.netpower.fr/obackup - ozy@netpower.fr"
|
||||||
PROGRAM_VERSION=2.1-RC1
|
PROGRAM_VERSION=2.1-RC1
|
||||||
PROGRAM_BUILD=2018093006
|
PROGRAM_BUILD=2018093008
|
||||||
IS_STABLE=no
|
IS_STABLE=no
|
||||||
|
|
||||||
|
|
||||||
@@ -4324,6 +4324,11 @@ function RemoteLogger {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function _RotateBackupsRemoteSSH {
|
function _RotateBackupsRemoteSSH {
|
||||||
|
local backup
|
||||||
|
local copy
|
||||||
|
local cmd
|
||||||
|
local path
|
||||||
|
|
||||||
$REMOTE_FIND_CMD "$backupPath" -mindepth 1 -maxdepth 1 ! -regex ".*\.$PROGRAM\.[0-9]+" -print0 | while IFS= read -r -d $'\0' backup; do
|
$REMOTE_FIND_CMD "$backupPath" -mindepth 1 -maxdepth 1 ! -regex ".*\.$PROGRAM\.[0-9]+" -print0 | while IFS= read -r -d $'\0' backup; do
|
||||||
copy=$rotateCopies
|
copy=$rotateCopies
|
||||||
while [ $copy -gt 1 ]; do
|
while [ $copy -gt 1 ]; do
|
||||||
@@ -4350,7 +4355,7 @@ function _RotateBackupsRemoteSSH {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
copy=$((opy-1))
|
copy=$((copy-1))
|
||||||
done
|
done
|
||||||
|
|
||||||
# Latest file backup will not be moved if script configured for remote backup so next rsync execution will only do delta copy instead of full one
|
# Latest file backup will not be moved if script configured for remote backup so next rsync execution will only do delta copy instead of full one
|
||||||
@@ -4407,11 +4412,11 @@ function RotateBackups {
|
|||||||
local rotateCopies="${2}"
|
local rotateCopies="${2}"
|
||||||
|
|
||||||
|
|
||||||
Logger "Rotating backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
|
||||||
|
|
||||||
if [ "$BACKUP_TYPE" == "local" ] || [ "$BACKUP_TYPE" == "pull" ]; then
|
if [ "$BACKUP_TYPE" == "local" ] || [ "$BACKUP_TYPE" == "pull" ]; then
|
||||||
|
Logger "Rotating local backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
||||||
_RotateBackupsLocal "$backupPath" "$rotateCopies"
|
_RotateBackupsLocal "$backupPath" "$rotateCopies"
|
||||||
elif [ "$BACKUP_TYPE" == "push" ]; then
|
elif [ "$BACKUP_TYPE" == "push" ]; then
|
||||||
|
Logger "Rotating remote backups in [$backupPath] for [$rotateCopies] copies." "NOTICE"
|
||||||
_RotateBackupsRemote "$backupPath" "$rotateCopies"
|
_RotateBackupsRemote "$backupPath" "$rotateCopies"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user