diff options
author | Robin Obůrka <r.oburka@gmail.com> | 2017-04-03 11:57:55 +0200 |
---|---|---|
committer | Robin Obůrka <r.oburka@gmail.com> | 2017-04-03 16:10:42 +0200 |
commit | 6a78ea8e26246a44fa4a49a6988e331a97296ad1 (patch) | |
tree | a7eb043cf699725d31295e07df56c3c0b3a0a2ac | |
parent | Shrink the size of mbuffer (diff) | |
download | backuper-6a78ea8e26246a44fa4a49a6988e331a97296ad1.tar.xz |
Reorganize variables
-rw-r--r-- | backuper.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/backuper.sh b/backuper.sh index abee7e4..3297780 100644 --- a/backuper.sh +++ b/backuper.sh @@ -16,16 +16,13 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. ## Settings -GPG_RECIPIENTS="" -MBUFFER_SIZE="10M" - -## Internal variables - backup process NAME="" REMOTE="" GENERATE="" COMMAND="" PLACES="" EXCLUDE="" +GPG_RECIPIENTS="" TAR_EXTRA_PARAMS="" SSH_EXTRA_PARAMS="" STORE="" @@ -34,6 +31,7 @@ FILE_TYPE="" DST="" FILENAME="" FILENAME_BASE="" +MBUFFER_SIZE="10M" ## Pipeline variables RUNDIR="" |