From 65a3a0a19ab963bfbf5b8e5b88a57920ff316124 Mon Sep 17 00:00:00 2001 From: deajan Date: Fri, 2 Sep 2016 23:22:29 +0200 Subject: [PATCH] Fixed unit tests --- dev/tests/conf-local/local-max-exec-time.conf | 222 ----------------- dev/tests/conf-local/local.conf | 228 ------------------ dev/tests/conf-local/pull.conf | 228 ------------------ dev/tests/conf-local/push.conf | 228 ------------------ dev/tests/run_tests.sh | 14 +- 5 files changed, 7 insertions(+), 913 deletions(-) delete mode 100644 dev/tests/conf-local/local-max-exec-time.conf delete mode 100644 dev/tests/conf-local/local.conf delete mode 100644 dev/tests/conf-local/pull.conf delete mode 100644 dev/tests/conf-local/push.conf diff --git a/dev/tests/conf-local/local-max-exec-time.conf b/dev/tests/conf-local/local-max-exec-time.conf deleted file mode 100644 index 56fe94c..0000000 --- a/dev/tests/conf-local/local-max-exec-time.conf +++ /dev/null @@ -1,222 +0,0 @@ -#!/usr/bin/env bash - -###### obackup - Local or Remote, push or pull backup script for files & mysql databases -###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) -###### obackup v2.1x config file rev 2016081701 - -###### GENERAL BACKUP OPTIONS - -## Backup identification string. -INSTANCE_ID="local-test" - -## Log file location. Leaving this empty will create log file at /var/log/obackup.INSTANCE_ID.log (or current directory if /var/log doesn't exist). -LOGFILE="" - -## Elements to backup -SQL_BACKUP=yes -FILE_BACKUP=yes - -## Backups can be done local, pulled from another server or pushed to a backup server. Available options are [local,pull,push]. -## Pulled backups are the safest option, as the backup server contains the RSA key and cannot be compromised by another server. -BACKUP_TYPE=local - -###### BACKUP STORAGE - -## Storage paths of the backups (absolute paths of the local or remote system) -SQL_STORAGE="${HOME}/obackup-storage/sql" -FILE_STORAGE="${HOME}/obackup-storage/files" - -## Backup encryption using GPG and duplicity. Feature not ready yet. -ENCRYPTION=no - -## Create backup directories if they do not exist -CREATE_DIRS=yes - -## Keep absolute source path in your backup, eg: /your/backup/storage/the/remote/server/files -## You should leave this enabled if you intend to use 'backup task division' functionality of oBackup, or everything will end up in the same directory. -KEEP_ABSOLUTE_PATHS=yes - -## Generate an alert if backup size is lower than given value in Kb (this can also help identifying empty mount dirs). -BACKUP_SIZE_MINIMUM=1024 - -## Check backup size before proceeding -GET_BACKUP_SIZE=yes - -## Generate an alert if storage free space is lower than given value in Kb. -## Keep in mind that disabling backup file size test will only test min space against SQL backup size. -SQL_WARN_MIN_SPACE=1048576 -FILE_WARN_MIN_SPACE=1048576 - -###### REMOTE ONLY OPTIONS - -## In case of pulled or pushed backups, remote system URI needs to be supplied. -REMOTE_SYSTEM_URI="ssh://backupuser@remote.system.tld:22/" - -## You can specify a RSA key (please use full path). If not defined, the default ~/.ssh/id_rsa will be used. See documentation for further information. -SSH_RSA_PRIVATE_KEY="${HOME}/.ssh/id_rsa" - -## ssh compression should be used unless your remote connection is good enough (LAN) -SSH_COMPRESSION=yes - -## Ignore ssh known hosts verification. DANGER WILL ROBINSON DANGER: This can lead to security risks. Only enable if you know what you're doing. -SSH_IGNORE_KNOWN_HOSTS=no - -## Remote rsync executable path. Leave this empty in most cases -RSYNC_REMOTE_PATH="" - -## Check for connectivity to remote host before launching remote backup tasks. Be sure the hosts responds to ping. Failing to ping will skip current task. -REMOTE_HOST_PING=yes - -## Check for internet access by pinging one or more 3rd party hosts before remote backup tasks. Leave empty if you don't want this check to be be performed. Failing to ping will skip current task. -REMOTE_3RD_PARTY_HOSTS="www.kernel.org www.google.com" - -## If enabled, commands will be executed as superuser on remote side. See documentation for /etc/sudoers configuration ("find", "du", "tee" and "rsync" need to be allowed). Requiretty needs to be disabled. -SUDO_EXEC=no - -###### DATABASE SPECIFIC OPTIONS - -## Database backup user -SQL_USER=root - -## Enabling the following option will save all databases on local or remote given SQL instance except the ones specified in the exclude list. -## Every found database will be backed up as separate backup task. -DATABASES_ALL=yes -DATABASES_ALL_EXCLUDE_LIST="test;information_schema" -## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces. -DATABASES_LIST="mysql" - -## Max backup execution time per Database task. Soft max exec time generates a warning only. Hard max exec time generates a warning and stops current backup task. -## If a task gets stopped, next one in the task list gets executed. Time is specified in seconds. -SOFT_MAX_EXEC_TIME_DB_TASK=5 -HARD_MAX_EXEC_TIME_DB_TASK=10 - -## mysqldump options (ex: --extended-insert, --single-transaction, --quick...). See MySQL / MariaDB manual -## default option: --opt -MYSQLDUMP_OPTIONS="--opt --single-transaction" - -## Preferred SQL dump compression. Compression methods can be xz, lzma, pigz or gzip (will fallback from xz to gzip depending if available) -## Generally, level 5 is a good compromise between cpu, memory hunger and compress ratio. Gzipped files are set to be rsyncable. -COMPRESSION_LEVEL=3 - -###### FILES SPECIFIC OPTIONS - -## File backups are divided in tasks. Every directory in DIRECTORY_LIST will be processed as a unique task. -## Every subdirectory of each directory in RECURSIVE_DIRECTORY_LIST will be processed as a unique task. -## Example: RECURSIVE_DIRECTORY_LIST="/home;/var" will create backup tasks tasks "/home/dir1, "/home/dir2", ... "/home/dirN", "/var/log", "/var/lib"... "/var/something". -## You can exclude directories from the avove backup task creation, ex: avoid backing up "/home/dir2" by adding it to RECURSIVE_EXCLUDE_LIST. - -## Directories backup list. List of semicolon separated directories that will be backed up. -DIRECTORY_LIST="${HOME}/obackup-testdata/testData" -RECURSIVE_DIRECTORY_LIST="${HOME}/obackup-testdata/testDataRecursive" -RECURSIVE_EXCLUDE_LIST="${HOME}/obackup-testdata/testDataRecursive/Excluded" - -## Rsync exclude / include order (the option set here will be set first, eg: include will make include then exclude patterns) -RSYNC_PATTERN_FIRST=include - -## List of files / directories to incldue / exclude from sync on both sides (see rsync patterns, wildcards work). -## Paths are relative to sync dirs. List elements are separated by a semicolon. -RSYNC_INCLUDE_PATTERN="" -RSYNC_EXCLUDE_PATTERN="*.ded" -#RSYNC_EXCLUDE_PATTERN="tmp;archives" - -## Files that contains lists of files / directories to include / exclude from sync on both sides. Leave this empty if you don't want to use an exclusion file. -## This file has to be in the same directory as the config file -## Paths are relative to sync dirs. One element per line. -RSYNC_INCLUDE_FROM="" -RSYNC_EXCLUDE_FROM="" -#RSYNC_EXCLUDE_FROM="exclude.list" - -## List separator char. You may set an alternative separator char for your directories lists above. -PATH_SEPARATOR_CHAR=";" - -## Preserve basic linux permissions -PRESERVE_PERMISSIONS=yes -PRESERVE_OWNER=yes -PRESERVE_GROUP=yes -## On MACOS X, does not work and will be ignored -PRESERVE_EXECUTABILITY=yes - -## Preserve ACLS. Make sure source and target FS can hold same ACLs or you'll get loads of errors. -PRESERVE_ACL=no -## Preserve Xattr. MAke sure source and target FS can hold same Xattr or you'll get loads of errors. -PRESERVE_XATTR=no - -## Transforms symlinks into referent files/dirs -COPY_SYMLINKS=yes -## Treat symlinked dirs as dirs. CAUTION: This also follows symlinks outside of the replica root. -KEEP_DIRLINKS=yes -## Preserve hard links. Make sure source and target FS can manage hard links or you will lose them. -PRESERVE_HARDLINKS=no - - -## Let RSYNC compress file transfers. Do not use this on local-local backup schemes. Also, this is not useful if SSH compression is enabled. -RSYNC_COMPRESS=no - -## Max execution time per file backup task. Soft is warning only. Hard is warning, stopping backup and processing next one one file list. Tilme is specified in seconds -SOFT_MAX_EXEC_TIME_FILE_TASK=5 -HARD_MAX_EXEC_TIME_FILE_TASK=10 - -## Keep partial uploads that can be resumed on next run, experimental feature -PARTIAL=no - -## Delete files on destination that vanished from source. Do not turn this on unless you enabled backup rotation or a snapshotting FS like zfs to keep those vanished files on the destination. -DELETE_VANISHED_FILES=no - -## Use delta copy algortithm (usefull when local paths are network drives), defaults to yes -DELTA_COPIES=yes - -## Bandwidth limit Kbytes / second for file backups. Leave 0 to disable limitation. -BANDWIDTH=0 - -## Paranoia option. Don't change this unless you read the documentation. -RSYNC_EXECUTABLE=rsync - -###### ALERT OPTIONS - -## Alert email addresses separated by a space character -DESTINATION_MAILS="ozy@netpower.fr" - -## Windows specific (msys / cygwin environment) only mail options (used with mailsend.exe from muquit, http://github.com/muquit/mailsend or from sendemail.exe from Brandon Zehm, http://caspian.dotconf.net/menu/Software/SendEmail/ -SENDER_MAIL="alert@your.system.tld" -SMTP_SERVER=smtp.your.isp.tld -SMTP_PORT=25 -# encryption can be tls, ssl or none -SMTP_ENCRYPTION=none -SMTP_USER= -SMTP_PASSWORD= - -###### GENERAL BACKUP OPTIONS - -## Max execution time of whole backup process. Soft max exec time generates a warning only. -## Hard max exec time generates a warning and stops the whole backup execution. -SOFT_MAX_EXEC_TIME_TOTAL=30 -HARD_MAX_EXEC_TIME_TOTAL=36 - -## Log a message every KEEP_LOGGING seconds just to know the task is still alive -KEEP_LOGGING=1801 - -## Backup Rotation. You may rotate backups if you don't use snapshots on your backup server. -ROTATE_SQL_BACKUPS=no -ROTATE_SQL_COPIES=7 -ROTATE_FILE_BACKUPS=no -ROTATE_FILE_COPIES=7 - -###### EXECUTION HOOKS - -## Commands can will be run before and / or after backup execution (remote execution will only happen if REMOTE_BACKUP is set). -## This is useful to make a snapshot before backing up data, or even handle snapshots of backed up data. -LOCAL_RUN_BEFORE_CMD="" -LOCAL_RUN_AFTER_CMD="" - -REMOTE_RUN_BEFORE_CMD="" -REMOTE_RUN_AFTER_CMD="" - -## Max execution time of commands before they get force killed. Leave 0 if you don't want this to happen. Time is specified in seconds. -MAX_EXEC_TIME_PER_CMD_BEFORE=0 -MAX_EXEC_TIME_PER_CMD_AFTER=0 - -## Stops whole backup execution if one of the above commands fail -STOP_ON_CMD_ERROR=no - -## Run local and remote after backup cmd's even on failure -RUN_AFTER_CMD_ON_ERROR=yes diff --git a/dev/tests/conf-local/local.conf b/dev/tests/conf-local/local.conf deleted file mode 100644 index cb6d8d2..0000000 --- a/dev/tests/conf-local/local.conf +++ /dev/null @@ -1,228 +0,0 @@ -#!/usr/bin/env bash - -###### obackup - Local or Remote, push or pull backup script for files & mysql databases -###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) -###### obackup v2.1x config file rev 2016081701 - -###### GENERAL BACKUP OPTIONS - -## Backup identification string. -INSTANCE_ID="local-test" - -## Log file location. Leaving this empty will create log file at /var/log/obackup.INSTANCE_ID.log (or current directory if /var/log doesn't exist). -LOGFILE="" - -## Elements to backup -SQL_BACKUP=yes -FILE_BACKUP=yes - -## Backups can be done local, pulled from another server or pushed to a backup server. Available options are [local,pull,push]. -## Pulled backups are the safest option, as the backup server contains the RSA key and cannot be compromised by another server. -BACKUP_TYPE=local - -###### BACKUP STORAGE - -## Storage paths of the backups (absolute paths of the local or remote system) -SQL_STORAGE="${HOME}/obackup-storage/sql" -FILE_STORAGE="${HOME}/obackup-storage/files" - -## Encryption -ENCRYPTION=no - -## Backup encryption needs a temporary storage space in order to encrypt files before sending them (absolute paths of the local or remote system) -CRYPT_STORAGE="${HOME}/obackup-storage/crypt" - -## GPG recipient (pubkey for this recipient must exist, see gpg2 --list-keys or gpg --list-keys -GPG_RECIPIENT="John Doe" - -## Create backup directories if they do not exist -CREATE_DIRS=yes - -## Keep absolute source path in your backup, eg: /your/backup/storage/the/remote/server/files -## You should leave this enabled if you intend to use 'backup task division' functionality of oBackup, or everything will end up in the same directory. -KEEP_ABSOLUTE_PATHS=yes - -## Generate an alert if backup size is lower than given value in Kb (this can also help identifying empty mount dirs). -BACKUP_SIZE_MINIMUM=1024 - -## Check backup size before proceeding -GET_BACKUP_SIZE=yes - -## Generate an alert if storage free space is lower than given value in Kb. -## Keep in mind that disabling backup file size test will only test min space against SQL backup size. -SQL_WARN_MIN_SPACE=1048576 -FILE_WARN_MIN_SPACE=1048576 - -###### REMOTE ONLY OPTIONS - -## In case of pulled or pushed backups, remote system URI needs to be supplied. -REMOTE_SYSTEM_URI="ssh://backupuser@remote.system.tld:22/" - -## You can specify a RSA key (please use full path). If not defined, the default ~/.ssh/id_rsa will be used. See documentation for further information. -SSH_RSA_PRIVATE_KEY="${HOME}/.ssh/id_rsa" - -## ssh compression should be used unless your remote connection is good enough (LAN) -SSH_COMPRESSION=yes - -## Ignore ssh known hosts verification. DANGER WILL ROBINSON DANGER: This can lead to security risks. Only enable if you know what you're doing. -SSH_IGNORE_KNOWN_HOSTS=no - -## Remote rsync executable path. Leave this empty in most cases -RSYNC_REMOTE_PATH="" - -## Check for connectivity to remote host before launching remote backup tasks. Be sure the hosts responds to ping. Failing to ping will skip current task. -REMOTE_HOST_PING=yes - -## Check for internet access by pinging one or more 3rd party hosts before remote backup tasks. Leave empty if you don't want this check to be be performed. Failing to ping will skip current task. -REMOTE_3RD_PARTY_HOSTS="www.kernel.org www.google.com" - -## If enabled, commands will be executed as superuser on remote side. See documentation for /etc/sudoers configuration ("find", "du", "tee" and "rsync" need to be allowed). Requiretty needs to be disabled. -SUDO_EXEC=no - -###### DATABASE SPECIFIC OPTIONS - -## Database backup user -SQL_USER=root - -## Enabling the following option will save all databases on local or remote given SQL instance except the ones specified in the exclude list. -## Every found database will be backed up as separate backup task. -DATABASES_ALL=yes -DATABASES_ALL_EXCLUDE_LIST="test;information_schema;zarafa_prod" -## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces. -DATABASES_LIST="mysql" - -## Max backup execution time per Database task. Soft max exec time generates a warning only. Hard max exec time generates a warning and stops current backup task. -## If a task gets stopped, next one in the task list gets executed. Time is specified in seconds. -SOFT_MAX_EXEC_TIME_DB_TASK=3600 -HARD_MAX_EXEC_TIME_DB_TASK=7200 - -## mysqldump options (ex: --extended-insert, --single-transaction, --quick...). See MySQL / MariaDB manual -## default option: --opt -MYSQLDUMP_OPTIONS="--opt --single-transaction" - -## Preferred SQL dump compression. Compression methods can be xz, lzma, pigz or gzip (will fallback from xz to gzip depending if available) -## Generally, level 5 is a good compromise between cpu, memory hunger and compress ratio. Gzipped files are set to be rsyncable. -COMPRESSION_LEVEL=3 - -###### FILES SPECIFIC OPTIONS - -## File backups are divided in tasks. Every directory in DIRECTORY_LIST will be processed as a unique task. -## Every subdirectory of each directory in RECURSIVE_DIRECTORY_LIST will be processed as a unique task. -## Example: RECURSIVE_DIRECTORY_LIST="/home;/var" will create backup tasks tasks "/home/dir1, "/home/dir2", ... "/home/dirN", "/var/log", "/var/lib"... "/var/something". -## You can exclude directories from the avove backup task creation, ex: avoid backing up "/home/dir2" by adding it to RECURSIVE_EXCLUDE_LIST. - -## Directories backup list. List of semicolon separated directories that will be backed up. -DIRECTORY_LIST="${HOME}/obackup-testdata/testData" -RECURSIVE_DIRECTORY_LIST="${HOME}/obackup-testdata/testDataRecursive" -RECURSIVE_EXCLUDE_LIST="${HOME}/obackup-testdata/testDataRecursive/Excluded" - -## Rsync exclude / include order (the option set here will be set first, eg: include will make include then exclude patterns) -RSYNC_PATTERN_FIRST=include - -## List of files / directories to incldue / exclude from sync on both sides (see rsync patterns, wildcards work). -## Paths are relative to sync dirs. List elements are separated by a semicolon. -RSYNC_INCLUDE_PATTERN="" -RSYNC_EXCLUDE_PATTERN="*.ded" -#RSYNC_EXCLUDE_PATTERN="tmp;archives" - -## Files that contains lists of files / directories to include / exclude from sync on both sides. Leave this empty if you don't want to use an exclusion file. -## This file has to be in the same directory as the config file -## Paths are relative to sync dirs. One element per line. -RSYNC_INCLUDE_FROM="" -RSYNC_EXCLUDE_FROM="" -#RSYNC_EXCLUDE_FROM="exclude.list" - -## List separator char. You may set an alternative separator char for your directories lists above. -PATH_SEPARATOR_CHAR=";" - -## Preserve basic linux permissions -PRESERVE_PERMISSIONS=yes -PRESERVE_OWNER=yes -PRESERVE_GROUP=yes -## On MACOS X, does not work and will be ignored -PRESERVE_EXECUTABILITY=yes - -## Preserve ACLS. Make sure source and target FS can hold same ACLs or you'll get loads of errors. -PRESERVE_ACL=no -## Preserve Xattr. MAke sure source and target FS can hold same Xattr or you'll get loads of errors. -PRESERVE_XATTR=no - -## Transforms symlinks into referent files/dirs -COPY_SYMLINKS=yes -## Treat symlinked dirs as dirs. CAUTION: This also follows symlinks outside of the replica root. -KEEP_DIRLINKS=yes -## Preserve hard links. Make sure source and target FS can manage hard links or you will lose them. -PRESERVE_HARDLINKS=no - - -## Let RSYNC compress file transfers. Do not use this on local-local backup schemes. Also, this is not useful if SSH compression is enabled. -RSYNC_COMPRESS=no - -## Max execution time per file backup task. Soft is warning only. Hard is warning, stopping backup and processing next one one file list. Tilme is specified in seconds -SOFT_MAX_EXEC_TIME_FILE_TASK=3600 -HARD_MAX_EXEC_TIME_FILE_TASK=7200 - -## Keep partial uploads that can be resumed on next run, experimental feature -PARTIAL=no - -## Delete files on destination that vanished from source. Do not turn this on unless you enabled backup rotation or a snapshotting FS like zfs to keep those vanished files on the destination. -DELETE_VANISHED_FILES=no - -## Use delta copy algortithm (usefull when local paths are network drives), defaults to yes -DELTA_COPIES=yes - -## Bandwidth limit Kbytes / second for file backups. Leave 0 to disable limitation. -BANDWIDTH=0 - -## Paranoia option. Don't change this unless you read the documentation. -RSYNC_EXECUTABLE=rsync - -###### ALERT OPTIONS - -## Alert email addresses separated by a space character -DESTINATION_MAILS="ozy@netpower.fr" - -## Windows specific (msys / cygwin environment) only mail options (used with mailsend.exe from muquit, http://github.com/muquit/mailsend or from sendemail.exe from Brandon Zehm, http://caspian.dotconf.net/menu/Software/SendEmail/ -SENDER_MAIL="alert@your.system.tld" -SMTP_SERVER=smtp.your.isp.tld -SMTP_PORT=25 -# encryption can be tls, ssl or none -SMTP_ENCRYPTION=none -SMTP_USER= -SMTP_PASSWORD= - -###### GENERAL BACKUP OPTIONS - -## Max execution time of whole backup process. Soft max exec time generates a warning only. -## Hard max exec time generates a warning and stops the whole backup execution. -SOFT_MAX_EXEC_TIME_TOTAL=30000 -HARD_MAX_EXEC_TIME_TOTAL=36000 - -## Log a message every KEEP_LOGGING seconds just to know the task is still alive -KEEP_LOGGING=1801 - -## Backup Rotation. You may rotate backups if you don't use snapshots on your backup server. -ROTATE_SQL_BACKUPS=yes -ROTATE_SQL_COPIES=7 -ROTATE_FILE_BACKUPS=yes -ROTATE_FILE_COPIES=7 - -###### EXECUTION HOOKS - -## Commands can will be run before and / or after backup execution (remote execution will only happen if REMOTE_BACKUP is set). -## This is useful to make a snapshot before backing up data, or even handle snapshots of backed up data. -LOCAL_RUN_BEFORE_CMD="" -LOCAL_RUN_AFTER_CMD="" - -REMOTE_RUN_BEFORE_CMD="" -REMOTE_RUN_AFTER_CMD="" - -## Max execution time of commands before they get force killed. Leave 0 if you don't want this to happen. Time is specified in seconds. -MAX_EXEC_TIME_PER_CMD_BEFORE=0 -MAX_EXEC_TIME_PER_CMD_AFTER=0 - -## Stops whole backup execution if one of the above commands fail -STOP_ON_CMD_ERROR=no - -## Run local and remote after backup cmd's even on failure -RUN_AFTER_CMD_ON_ERROR=yes diff --git a/dev/tests/conf-local/pull.conf b/dev/tests/conf-local/pull.conf deleted file mode 100644 index a6cb32f..0000000 --- a/dev/tests/conf-local/pull.conf +++ /dev/null @@ -1,228 +0,0 @@ -#!/usr/bin/env bash - -###### obackup - Local or Remote, push or pull backup script for files & mysql databases -###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) -###### obackup v2.1x config file rev 2016081701 - -###### GENERAL BACKUP OPTIONS - -## Backup identification string. -INSTANCE_ID="pull-test" - -## Log file location. Leaving this empty will create log file at /var/log/obackup.INSTANCE_ID.log (or current directory if /var/log doesn't exist). -LOGFILE="" - -## Elements to backup -SQL_BACKUP=yes -FILE_BACKUP=yes - -## Backups can be done local, pulled from another server or pushed to a backup server. Available options are [local,pull,push]. -## Pulled backups are the safest option, as the backup server contains the RSA key and cannot be compromised by another server. -BACKUP_TYPE=pull - -###### BACKUP STORAGE - -## Storage paths of the backups (absolute paths of the local or remote system) -SQL_STORAGE="${HOME}/obackup-storage/sql-pull" -FILE_STORAGE="${HOME}/obackup-storage/files-pull" - -## Encryption -ENCRYPTION=yes - -## Backup encryption needs a temporary storage space in order to encrypt files before sending them (absolute paths of the local or remote system) -CRYPT_STORAGE="${HOME}/obackup-storage/crypt" - -## GPG recipient (pubkey for this recipient must exist, see gpg2 --list-keys or gpg --list-keys -GPG_RECIPIENT="John Doe" - -## Create backup directories if they do not exist -CREATE_DIRS=yes - -## Keep absolute source path in your backup, eg: /your/backup/storage/the/remote/server/files -## You should leave this enabled if you intend to use 'backup task division' functionality of oBackup, or everything will end up in the same directory. -KEEP_ABSOLUTE_PATHS=yes - -## Generate an alert if backup size is lower than given value in Kb (this can also help identifying empty mount dirs). -BACKUP_SIZE_MINIMUM=1024 - -## Check backup size before proceeding -GET_BACKUP_SIZE=yes - -## Generate an alert if storage free space is lower than given value in Kb. -## Keep in mind that disabling backup file size test will only test min space against SQL backup size. -SQL_WARN_MIN_SPACE=1048576 -FILE_WARN_MIN_SPACE=1048576 - -###### REMOTE ONLY OPTIONS - -## In case of pulled or pushed backups, remote system URI needs to be supplied. -REMOTE_SYSTEM_URI="ssh://root@localhost:49999/" - -## You can specify a RSA key (please use full path). If not defined, the default ~/.ssh/id_rsa will be used. See documentation for further information. -SSH_RSA_PRIVATE_KEY="${HOME}/.ssh/id_rsa_local" - -## ssh compression should be used unless your remote connection is good enough (LAN) -SSH_COMPRESSION=yes - -## Ignore ssh known hosts verification. DANGER WILL ROBINSON DANGER: This can lead to security risks. Only enable if you know what you're doing. -SSH_IGNORE_KNOWN_HOSTS=no - -## Remote rsync executable path. Leave this empty in most cases -RSYNC_REMOTE_PATH="" - -## Check for connectivity to remote host before launching remote backup tasks. Be sure the hosts responds to ping. Failing to ping will skip current task. -REMOTE_HOST_PING=yes - -## Check for internet access by pinging one or more 3rd party hosts before remote backup tasks. Leave empty if you don't want this check to be be performed. Failing to ping will skip current task. -REMOTE_3RD_PARTY_HOSTS="www.kernel.org www.google.com" - -## If enabled, commands will be executed as superuser on remote side. See documentation for /etc/sudoers configuration ("find", "du", "tee" and "rsync" need to be allowed). Requiretty needs to be disabled. -SUDO_EXEC=no - -###### DATABASE SPECIFIC OPTIONS - -## Database backup user -SQL_USER=root - -## Enabling the following option will save all databases on local or remote given SQL instance except the ones specified in the exclude list. -## Every found database will be backed up as separate backup task. -DATABASES_ALL=yes -DATABASES_ALL_EXCLUDE_LIST="test;information_schema;zarafa_prod" -## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces. -DATABASES_LIST="mysql" - -## Max backup execution time per Database task. Soft max exec time generates a warning only. Hard max exec time generates a warning and stops current backup task. -## If a task gets stopped, next one in the task list gets executed. Time is specified in seconds. -SOFT_MAX_EXEC_TIME_DB_TASK=3600 -HARD_MAX_EXEC_TIME_DB_TASK=7200 - -## mysqldump options (ex: --extended-insert, --single-transaction, --quick...). See MySQL / MariaDB manual -## default option: --opt -MYSQLDUMP_OPTIONS="--opt --single-transaction" - -## Preferred SQL dump compression. Compression methods can be xz, lzma, pigz or gzip (will fallback from xz to gzip depending if available) -## Generally, level 5 is a good compromise between cpu, memory hunger and compress ratio. Gzipped files are set to be rsyncable. -COMPRESSION_LEVEL=3 - -###### FILES SPECIFIC OPTIONS - -## File backups are divided in tasks. Every directory in DIRECTORY_LIST will be processed as a unique task. -## Every subdirectory of each directory in RECURSIVE_DIRECTORY_LIST will be processed as a unique task. -## Example: RECURSIVE_DIRECTORY_LIST="/home;/var" will create backup tasks tasks "/home/dir1, "/home/dir2", ... "/home/dirN", "/var/log", "/var/lib"... "/var/something". -## You can exclude directories from the avove backup task creation, ex: avoid backing up "/home/dir2" by adding it to RECURSIVE_EXCLUDE_LIST. - -## Directories backup list. List of semicolon separated directories that will be backed up. -DIRECTORY_LIST="${HOME}/obackup-testdata/testData" -RECURSIVE_DIRECTORY_LIST="${HOME}/obackup-testdata/testDataRecursive" -RECURSIVE_EXCLUDE_LIST="${HOME}/obackup-testdata/testDataRecursive/Excluded" - -## Rsync exclude / include order (the option set here will be set first, eg: include will make include then exclude patterns) -RSYNC_PATTERN_FIRST=include - -## List of files / directories to incldue / exclude from sync on both sides (see rsync patterns, wildcards work). -## Paths are relative to sync dirs. List elements are separated by a semicolon. -RSYNC_INCLUDE_PATTERN="" -RSYNC_EXCLUDE_PATTERN="*.ded" -#RSYNC_EXCLUDE_PATTERN="tmp;archives" - -## Files that contains lists of files / directories to include / exclude from sync on both sides. Leave this empty if you don't want to use an exclusion file. -## This file has to be in the same directory as the config file -## Paths are relative to sync dirs. One element per line. -RSYNC_INCLUDE_FROM="" -RSYNC_EXCLUDE_FROM="" -#RSYNC_EXCLUDE_FROM="exclude.list" - -## List separator char. You may set an alternative separator char for your directories lists above. -PATH_SEPARATOR_CHAR=";" - -## Preserve basic linux permissions -PRESERVE_PERMISSIONS=yes -PRESERVE_OWNER=yes -PRESERVE_GROUP=yes -## On MACOS X, does not work and will be ignored -PRESERVE_EXECUTABILITY=yes - -## Preserve ACLS. Make sure source and target FS can hold same ACLs or you'll get loads of errors. -PRESERVE_ACL=no -## Preserve Xattr. MAke sure source and target FS can hold same Xattr or you'll get loads of errors. -PRESERVE_XATTR=no - -## Transforms symlinks into referent files/dirs -COPY_SYMLINKS=yes -## Treat symlinked dirs as dirs. CAUTION: This also follows symlinks outside of the replica root. -KEEP_DIRLINKS=yes -## Preserve hard links. Make sure source and target FS can manage hard links or you will lose them. -PRESERVE_HARDLINKS=no - - -## Let RSYNC compress file transfers. Do not use this on local-local backup schemes. Also, this is not useful if SSH compression is enabled. -RSYNC_COMPRESS=no - -## Max execution time per file backup task. Soft is warning only. Hard is warning, stopping backup and processing next one one file list. Tilme is specified in seconds -SOFT_MAX_EXEC_TIME_FILE_TASK=3600 -HARD_MAX_EXEC_TIME_FILE_TASK=7200 - -## Keep partial uploads that can be resumed on next run, experimental feature -PARTIAL=no - -## Delete files on destination that vanished from source. Do not turn this on unless you enabled backup rotation or a snapshotting FS like zfs to keep those vanished files on the destination. -DELETE_VANISHED_FILES=no - -## Use delta copy algortithm (usefull when local paths are network drives), defaults to yes -DELTA_COPIES=yes - -## Bandwidth limit Kbytes / second for file backups. Leave 0 to disable limitation. -BANDWIDTH=0 - -## Paranoia option. Don't change this unless you read the documentation. -RSYNC_EXECUTABLE=rsync - -###### ALERT OPTIONS - -## Alert email addresses separated by a space character -DESTINATION_MAILS="ozy@netpower.fr" - -## Windows specific (msys / cygwin environment) only mail options (used with mailsend.exe from muquit, http://github.com/muquit/mailsend or from sendemail.exe from Brandon Zehm, http://caspian.dotconf.net/menu/Software/SendEmail/ -SENDER_MAIL="alert@your.system.tld" -SMTP_SERVER=smtp.your.isp.tld -SMTP_PORT=25 -# encryption can be tls, ssl or none -SMTP_ENCRYPTION=none -SMTP_USER= -SMTP_PASSWORD= - -###### GENERAL BACKUP OPTIONS - -## Max execution time of whole backup process. Soft max exec time generates a warning only. -## Hard max exec time generates a warning and stops the whole backup execution. -SOFT_MAX_EXEC_TIME_TOTAL=30000 -HARD_MAX_EXEC_TIME_TOTAL=36000 - -## Log a message every KEEP_LOGGING seconds just to know the task is still alive -KEEP_LOGGING=1801 - -## Backup Rotation. You may rotate backups if you don't use snapshots on your backup server. -ROTATE_SQL_BACKUPS=yes -ROTATE_SQL_COPIES=7 -ROTATE_FILE_BACKUPS=yes -ROTATE_FILE_COPIES=7 - -###### EXECUTION HOOKS - -## Commands can will be run before and / or after backup execution (remote execution will only happen if REMOTE_BACKUP is set). -## This is useful to make a snapshot before backing up data, or even handle snapshots of backed up data. -LOCAL_RUN_BEFORE_CMD="" -LOCAL_RUN_AFTER_CMD="" - -REMOTE_RUN_BEFORE_CMD="" -REMOTE_RUN_AFTER_CMD="" - -## Max execution time of commands before they get force killed. Leave 0 if you don't want this to happen. Time is specified in seconds. -MAX_EXEC_TIME_PER_CMD_BEFORE=0 -MAX_EXEC_TIME_PER_CMD_AFTER=0 - -## Stops whole backup execution if one of the above commands fail -STOP_ON_CMD_ERROR=no - -## Run local and remote after backup cmd's even on failure -RUN_AFTER_CMD_ON_ERROR=yes diff --git a/dev/tests/conf-local/push.conf b/dev/tests/conf-local/push.conf deleted file mode 100644 index c562db5..0000000 --- a/dev/tests/conf-local/push.conf +++ /dev/null @@ -1,228 +0,0 @@ -#!/usr/bin/env bash - -###### obackup - Local or Remote, push or pull backup script for files & mysql databases -###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) -###### obackup v2.1x config file rev 2016081701 - -###### GENERAL BACKUP OPTIONS - -## Backup identification string. -INSTANCE_ID="push-test" - -## Log file location. Leaving this empty will create log file at /var/log/obackup.INSTANCE_ID.log (or current directory if /var/log doesn't exist). -LOGFILE="" - -## Elements to backup -SQL_BACKUP=yes -FILE_BACKUP=yes - -## Backups can be done local, pulled from another server or pushed to a backup server. Available options are [local,pull,push]. -## Pulled backups are the safest option, as the backup server contains the RSA key and cannot be compromised by another server. -BACKUP_TYPE=push - -###### BACKUP STORAGE - -## Storage paths of the backups (absolute paths of the local or remote system) -SQL_STORAGE="${HOME}/obackup-storage/sql-push" -FILE_STORAGE="${HOME}/obackup-storage/files-push" - -## Encryption -ENCRYPTION=no - -## Backup encryption needs a temporary storage space in order to encrypt files before sending them (absolute paths of the local or remote system) -CRYPT_STORAGE="${HOME}/obackup-storage/crypt" - -## GPG recipient (pubkey for this recipient must exist, see gpg2 --list-keys or gpg --list-keys -GPG_RECIPIENT="John Doe" - -## Create backup directories if they do not exist -CREATE_DIRS=yes - -## Keep absolute source path in your backup, eg: /your/backup/storage/the/remote/server/files -## You should leave this enabled if you intend to use 'backup task division' functionality of oBackup, or everything will end up in the same directory. -KEEP_ABSOLUTE_PATHS=yes - -## Generate an alert if backup size is lower than given value in Kb (this can also help identifying empty mount dirs). -BACKUP_SIZE_MINIMUM=1024 - -## Check backup size before proceeding -GET_BACKUP_SIZE=yes - -## Generate an alert if storage free space is lower than given value in Kb. -## Keep in mind that disabling backup file size test will only test min space against SQL backup size. -SQL_WARN_MIN_SPACE=1048576 -FILE_WARN_MIN_SPACE=1048576 - -###### REMOTE ONLY OPTIONS - -## In case of pulled or pushed backups, remote system URI needs to be supplied. -REMOTE_SYSTEM_URI="ssh://root@localhost:49999/" - -## You can specify a RSA key (please use full path). If not defined, the default ~/.ssh/id_rsa will be used. See documentation for further information. -SSH_RSA_PRIVATE_KEY="${HOME}/.ssh/id_rsa_local" - -## ssh compression should be used unless your remote connection is good enough (LAN) -SSH_COMPRESSION=yes - -## Ignore ssh known hosts verification. DANGER WILL ROBINSON DANGER: This can lead to security risks. Only enable if you know what you're doing. -SSH_IGNORE_KNOWN_HOSTS=no - -## Remote rsync executable path. Leave this empty in most cases -RSYNC_REMOTE_PATH="" - -## Check for connectivity to remote host before launching remote backup tasks. Be sure the hosts responds to ping. Failing to ping will skip current task. -REMOTE_HOST_PING=yes - -## Check for internet access by pinging one or more 3rd party hosts before remote backup tasks. Leave empty if you don't want this check to be be performed. Failing to ping will skip current task. -REMOTE_3RD_PARTY_HOSTS="www.kernel.org www.google.com" - -## If enabled, commands will be executed as superuser on remote side. See documentation for /etc/sudoers configuration ("find", "du", "tee" and "rsync" need to be allowed). Requiretty needs to be disabled. -SUDO_EXEC=no - -###### DATABASE SPECIFIC OPTIONS - -## Database backup user -SQL_USER=root - -## Enabling the following option will save all databases on local or remote given SQL instance except the ones specified in the exclude list. -## Every found database will be backed up as separate backup task. -DATABASES_ALL=yes -DATABASES_ALL_EXCLUDE_LIST="test;information_schema;zarafa_prod" -## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces. -DATABASES_LIST="mysql" - -## Max backup execution time per Database task. Soft max exec time generates a warning only. Hard max exec time generates a warning and stops current backup task. -## If a task gets stopped, next one in the task list gets executed. Time is specified in seconds. -SOFT_MAX_EXEC_TIME_DB_TASK=3600 -HARD_MAX_EXEC_TIME_DB_TASK=7200 - -## mysqldump options (ex: --extended-insert, --single-transaction, --quick...). See MySQL / MariaDB manual -## default option: --opt -MYSQLDUMP_OPTIONS="--opt --single-transaction" - -## Preferred SQL dump compression. Compression methods can be xz, lzma, pigz or gzip (will fallback from xz to gzip depending if available) -## Generally, level 5 is a good compromise between cpu, memory hunger and compress ratio. Gzipped files are set to be rsyncable. -COMPRESSION_LEVEL=3 - -###### FILES SPECIFIC OPTIONS - -## File backups are divided in tasks. Every directory in DIRECTORY_LIST will be processed as a unique task. -## Every subdirectory of each directory in RECURSIVE_DIRECTORY_LIST will be processed as a unique task. -## Example: RECURSIVE_DIRECTORY_LIST="/home;/var" will create backup tasks tasks "/home/dir1, "/home/dir2", ... "/home/dirN", "/var/log", "/var/lib"... "/var/something". -## You can exclude directories from the avove backup task creation, ex: avoid backing up "/home/dir2" by adding it to RECURSIVE_EXCLUDE_LIST. - -## Directories backup list. List of semicolon separated directories that will be backed up. -DIRECTORY_LIST="${HOME}/obackup-testdata/testData" -RECURSIVE_DIRECTORY_LIST="${HOME}/obackup-testdata/testDataRecursive" -RECURSIVE_EXCLUDE_LIST="${HOME}/obackup-testdata/testDataRecursive/Excluded" - -## Rsync exclude / include order (the option set here will be set first, eg: include will make include then exclude patterns) -RSYNC_PATTERN_FIRST=include - -## List of files / directories to incldue / exclude from sync on both sides (see rsync patterns, wildcards work). -## Paths are relative to sync dirs. List elements are separated by a semicolon. -RSYNC_INCLUDE_PATTERN="" -RSYNC_EXCLUDE_PATTERN="*.ded" -#RSYNC_EXCLUDE_PATTERN="tmp;archives" - -## Files that contains lists of files / directories to include / exclude from sync on both sides. Leave this empty if you don't want to use an exclusion file. -## This file has to be in the same directory as the config file -## Paths are relative to sync dirs. One element per line. -RSYNC_INCLUDE_FROM="" -RSYNC_EXCLUDE_FROM="" -#RSYNC_EXCLUDE_FROM="exclude.list" - -## List separator char. You may set an alternative separator char for your directories lists above. -PATH_SEPARATOR_CHAR=";" - -## Preserve basic linux permissions -PRESERVE_PERMISSIONS=yes -PRESERVE_OWNER=yes -PRESERVE_GROUP=yes -## On MACOS X, does not work and will be ignored -PRESERVE_EXECUTABILITY=yes - -## Preserve ACLS. Make sure source and target FS can hold same ACLs or you'll get loads of errors. -PRESERVE_ACL=no -## Preserve Xattr. MAke sure source and target FS can hold same Xattr or you'll get loads of errors. -PRESERVE_XATTR=no - -## Transforms symlinks into referent files/dirs -COPY_SYMLINKS=yes -## Treat symlinked dirs as dirs. CAUTION: This also follows symlinks outside of the replica root. -KEEP_DIRLINKS=yes -## Preserve hard links. Make sure source and target FS can manage hard links or you will lose them. -PRESERVE_HARDLINKS=no - - -## Let RSYNC compress file transfers. Do not use this on local-local backup schemes. Also, this is not useful if SSH compression is enabled. -RSYNC_COMPRESS=no - -## Max execution time per file backup task. Soft is warning only. Hard is warning, stopping backup and processing next one one file list. Tilme is specified in seconds -SOFT_MAX_EXEC_TIME_FILE_TASK=3600 -HARD_MAX_EXEC_TIME_FILE_TASK=7200 - -## Keep partial uploads that can be resumed on next run, experimental feature -PARTIAL=no - -## Delete files on destination that vanished from source. Do not turn this on unless you enabled backup rotation or a snapshotting FS like zfs to keep those vanished files on the destination. -DELETE_VANISHED_FILES=no - -## Use delta copy algortithm (usefull when local paths are network drives), defaults to yes -DELTA_COPIES=yes - -## Bandwidth limit Kbytes / second for file backups. Leave 0 to disable limitation. -BANDWIDTH=0 - -## Paranoia option. Don't change this unless you read the documentation. -RSYNC_EXECUTABLE=rsync - -###### ALERT OPTIONS - -## Alert email addresses separated by a space character -DESTINATION_MAILS="ozy@netpower.fr" - -## Windows specific (msys / cygwin environment) only mail options (used with mailsend.exe from muquit, http://github.com/muquit/mailsend or from sendemail.exe from Brandon Zehm, http://caspian.dotconf.net/menu/Software/SendEmail/ -SENDER_MAIL="alert@your.system.tld" -SMTP_SERVER=smtp.your.isp.tld -SMTP_PORT=25 -# encryption can be tls, ssl or none -SMTP_ENCRYPTION=none -SMTP_USER= -SMTP_PASSWORD= - -###### GENERAL BACKUP OPTIONS - -## Max execution time of whole backup process. Soft max exec time generates a warning only. -## Hard max exec time generates a warning and stops the whole backup execution. -SOFT_MAX_EXEC_TIME_TOTAL=30000 -HARD_MAX_EXEC_TIME_TOTAL=36000 - -## Log a message every KEEP_LOGGING seconds just to know the task is still alive -KEEP_LOGGING=1801 - -## Backup Rotation. You may rotate backups if you don't use snapshots on your backup server. -ROTATE_SQL_BACKUPS=yes -ROTATE_SQL_COPIES=7 -ROTATE_FILE_BACKUPS=yes -ROTATE_FILE_COPIES=7 - -###### EXECUTION HOOKS - -## Commands can will be run before and / or after backup execution (remote execution will only happen if REMOTE_BACKUP is set). -## This is useful to make a snapshot before backing up data, or even handle snapshots of backed up data. -LOCAL_RUN_BEFORE_CMD="" -LOCAL_RUN_AFTER_CMD="" - -REMOTE_RUN_BEFORE_CMD="" -REMOTE_RUN_AFTER_CMD="" - -## Max execution time of commands before they get force killed. Leave 0 if you don't want this to happen. Time is specified in seconds. -MAX_EXEC_TIME_PER_CMD_BEFORE=0 -MAX_EXEC_TIME_PER_CMD_AFTER=0 - -## Stops whole backup execution if one of the above commands fail -STOP_ON_CMD_ERROR=no - -## Run local and remote after backup cmd's even on failure -RUN_AFTER_CMD_ON_ERROR=yes diff --git a/dev/tests/run_tests.sh b/dev/tests/run_tests.sh index 6d202aa..f349c7f 100755 --- a/dev/tests/run_tests.sh +++ b/dev/tests/run_tests.sh @@ -211,7 +211,7 @@ function test_Merge () { SetStableToYes } -function nope_test_LocalRun () { +function test_LocalRun () { # Basic return code tests. Need to go deep into file presence testing cd "$OBACKUP_DIR" ./$OBACKUP_EXECUTABLE "$CONF_DIR/$LOCAL_CONF" @@ -257,7 +257,7 @@ function nope_test_LocalRun () { } -function nope_test_PullRun () { +function test_PullRun () { # Basic return code tests. Need to go deep into file presence testing cd "$OBACKUP_DIR" ./$OBACKUP_EXECUTABLE "$CONF_DIR/$PULL_CONF" @@ -304,7 +304,7 @@ function nope_test_PullRun () { } -function nope_test_PushRun () { +function test_PushRun () { # Basic return code tests. Need to go deep into file presence testing cd "$OBACKUP_DIR" ./$OBACKUP_EXECUTABLE "$CONF_DIR/$PUSH_CONF" @@ -350,7 +350,7 @@ function nope_test_PushRun () { } -function nope_test_EncryptLocalRun () { +function test_EncryptLocalRun () { SetEncryption "$CONF_DIR/$LOCAL_CONF" true cd "$OBACKUP_DIR" @@ -464,7 +464,7 @@ function test_EncryptPullRun () { } -function nope_test_EncryptPushRun () { +function test_EncryptPushRun () { # Basic return code tests. Need to go deep into file presence testing SetEncryption "$CONF_DIR/$PUSH_CONF" true @@ -520,7 +520,7 @@ function nope_test_EncryptPushRun () { assertEquals "Decrypt file storage in [$TARGET_DIR_FILE_PUSH]" "0" $? } -function nope_test_WaitForTaskCompletion () { +function test_WaitForTaskCompletion () { # Tests if wait for task completion works correctly # Standard wait @@ -568,7 +568,7 @@ function nope_test_WaitForTaskCompletion () { assertEquals "WaitForTaskCompletion test 5" "2" $? } -function nope_test_ParallelExec () { +function test_ParallelExec () { # Test if parallelExec works correctly cmd="sleep 2;sleep 2;sleep 2;sleep 2"