Removed debug lines from config file

This commit is contained in:
deajan 2015-11-15 14:50:41 +01:00
parent 87dd950199
commit 541119dda2
1 changed files with 5 additions and 7 deletions

View File

@ -1,6 +1,6 @@
###### Local / Remote backup script for files & databases ###### Local / Remote backup script for files & databases
###### (L) 2013-2015 by Ozy de Jong (www.netpower.fr) ###### (L) 2013-2015 by Ozy de Jong (www.netpower.fr)
###### obackup v2.x config file rev 2015111102 ###### obackup v2.x config file rev 2015111501
###### GENERAL BACKUP OPTIONS ###### GENERAL BACKUP OPTIONS
@ -51,11 +51,10 @@ SUDO_EXEC=yes
###### REMOTE ONLY OPTIONS ###### REMOTE ONLY OPTIONS
## In case of pulled or pushed backups, remote system URI needs to be supplied. ## In case of pulled or pushed backups, remote system URI needs to be supplied.
#REMOTE_SYSTEM_URI="ssh://backupuser@remote.system.tld:22/" REMOTE_SYSTEM_URI="ssh://backupuser@remote.system.tld:22/"
REMOTE_SYSTEM_URI="ssh://backupmaster@mailer.mvacances.org:49998/"
## 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. ## 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="/root/.ssh/id_rsa.srvmailing" SSH_RSA_PRIVATE_KEY="/root/.ssh/id_rsa"
## ssh compression should be used unless your remote connection is good enough (LAN) ## ssh compression should be used unless your remote connection is good enough (LAN)
SSH_COMPRESSION=yes SSH_COMPRESSION=yes
@ -72,13 +71,12 @@ REMOTE_3RD_PARTY_HOSTS="www.kernel.org www.google.com"
###### DATABASE SPECIFIC OPTIONS ###### DATABASE SPECIFIC OPTIONS
## Database backup user ## Database backup user
SQL_USER=backupmaster SQL_USER=backupuser
SQL_USER=root #DEBUG
## Enabling the following option will save all databases on local or remote given SQL instance except the ones specified in the exclude list. ## 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. ## Every found database will be backed up as separate backup task.
DATABASES_ALL=yes DATABASES_ALL=yes
DATABASES_ALL_EXCLUDE_LIST="test;phplistdb_prod" #DEBUG DATABASES_ALL_EXCLUDE_LIST="test"
## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces. ## Alternatively, if DATABASES_ALL=no, you can specify a list of databases to backup separated by spaces.
#DATABASES_LIST="somedatabase" #DATABASES_LIST="somedatabase"