diff --git a/dev/tests/conf/local.conf b/dev/tests/conf/local.conf index f9ce1f5..d4b3486 100644 --- a/dev/tests/conf/local.conf +++ b/dev/tests/conf/local.conf @@ -26,9 +26,15 @@ BACKUP_TYPE=local SQL_STORAGE="${HOME}/obackup-storage/sql" FILE_STORAGE="${HOME}/obackup-storage/files" -## Backup encryption using GPG and duplicity. Feature not ready yet. +## 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/crpyt" + +## 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 @@ -81,7 +87,7 @@ 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" +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" diff --git a/dev/tests/conf/pull.conf b/dev/tests/conf/pull.conf index 085422b..17ea897 100644 --- a/dev/tests/conf/pull.conf +++ b/dev/tests/conf/pull.conf @@ -26,9 +26,15 @@ BACKUP_TYPE=pull SQL_STORAGE="${HOME}/obackup-storage/sql-pull" FILE_STORAGE="${HOME}/obackup-storage/files-pull" -## Backup encryption using GPG and duplicity. Feature not ready yet. +## 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/crpyt" + +## 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 @@ -50,7 +56,7 @@ 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/" +REMOTE_SYSTEM_URI="ssh://root@localhost: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_local" @@ -81,7 +87,7 @@ 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" +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" diff --git a/dev/tests/conf/push.conf b/dev/tests/conf/push.conf index 2889a11..7ccbb03 100644 --- a/dev/tests/conf/push.conf +++ b/dev/tests/conf/push.conf @@ -26,9 +26,15 @@ BACKUP_TYPE=push SQL_STORAGE="${HOME}/obackup-storage/sql-push" FILE_STORAGE="${HOME}/obackup-storage/files-push" -## Backup encryption using GPG and duplicity. Feature not ready yet. +## 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/crpyt" + +## 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 @@ -50,7 +56,7 @@ 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/" +REMOTE_SYSTEM_URI="ssh://root@localhost: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_local" @@ -81,7 +87,7 @@ 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" +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"