mirror of
https://github.com/deajan/obackup.git
synced 2025-05-10 12:13:41 +02:00
Added PARALLEL_ENCRYPTION_PROCESSES parameter
This commit is contained in:
parent
83aed0fe20
commit
a3e156edf9
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
###### obackup - Local or Remote, push or pull backup script for files & mysql databases
|
###### obackup - Local or Remote, push or pull backup script for files & mysql databases
|
||||||
###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr)
|
###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr)
|
||||||
###### obackup v2.1x config file rev 2016121901
|
###### obackup v2.1x config file rev 2017010201
|
||||||
|
|
||||||
###### GENERAL BACKUP OPTIONS
|
###### GENERAL BACKUP OPTIONS
|
||||||
|
|
||||||
@ -38,6 +38,9 @@ CRYPT_STORAGE=/home/storage/backup/crpyt
|
|||||||
## GPG recipient (pubkey for this recipient must exist, see gpg2 --list-keys or gpg --list-keys
|
## GPG recipient (pubkey for this recipient must exist, see gpg2 --list-keys or gpg --list-keys
|
||||||
GPG_RECIPIENT="John Doe"
|
GPG_RECIPIENT="John Doe"
|
||||||
|
|
||||||
|
## Use n CPUs for encryption / decryption where n is an integer
|
||||||
|
PARALLEL_ENCRYPTION_PROCESSES=
|
||||||
|
|
||||||
## Create backup directories if they do not exist
|
## Create backup directories if they do not exist
|
||||||
CREATE_DIRS=yes
|
CREATE_DIRS=yes
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ AUTHOR="(C) 2016 by Orsiris de Jong"
|
|||||||
CONTACT="http://www.netpower.fr/obacup - ozy@netpower.fr"
|
CONTACT="http://www.netpower.fr/obacup - ozy@netpower.fr"
|
||||||
OLD_PROGRAM_VERSION="v1.x"
|
OLD_PROGRAM_VERSION="v1.x"
|
||||||
NEW_PROGRAM_VERSION="v2.1x"
|
NEW_PROGRAM_VERSION="v2.1x"
|
||||||
CONFIG_FILE_VERSION=2016121901
|
CONFIG_FILE_VERSION=2017010201
|
||||||
PROGRAM_BUILD=2016113001
|
PROGRAM_BUILD=2016113001
|
||||||
|
|
||||||
if ! type "$BASH" > /dev/null; then
|
if ! type "$BASH" > /dev/null; then
|
||||||
@ -29,6 +29,7 @@ FILE_STORAGE
|
|||||||
ENCRYPTION
|
ENCRYPTION
|
||||||
CRYPT_STORAGE
|
CRYPT_STORAGE
|
||||||
GPG_RECIPIENT
|
GPG_RECIPIENT
|
||||||
|
PARALLEL_ENCRYPTION_PROCESSES
|
||||||
CREATE_DIRS
|
CREATE_DIRS
|
||||||
KEEP_ABSOLUTE_PATHS
|
KEEP_ABSOLUTE_PATHS
|
||||||
BACKUP_SIZE_MINIMUM
|
BACKUP_SIZE_MINIMUM
|
||||||
@ -114,6 +115,7 @@ local
|
|||||||
no
|
no
|
||||||
/home/storage/crypt
|
/home/storage/crypt
|
||||||
'Your Name used with GPG signature'
|
'Your Name used with GPG signature'
|
||||||
|
''
|
||||||
yes
|
yes
|
||||||
yes
|
yes
|
||||||
1024
|
1024
|
||||||
|
Loading…
Reference in New Issue
Block a user