diff options
author | BarbzYHOOL <yhool_server@gmx.com> | 2018-02-24 16:28:25 +0100 |
---|---|---|
committer | Barbz <BarbzYHOOL@users.noreply.github.com> | 2018-05-30 14:39:50 +0200 |
commit | d9de91bb42172918f80ab85d5eee04d35641c143 (patch) | |
tree | 077326146fd5a2d790071aa2b787dec6de0542e5 /conf | |
parent | ed4de4dd64b599ec80c16991ca411e0224d319b1 (diff) |
Bash scripts conf - Set backup to false by default, fixed typo and added a warning
Diffstat (limited to 'conf')
-rw-r--r-- | conf/config.sh.dist | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/conf/config.sh.dist b/conf/config.sh.dist index 96bde98363..fcf8965ffa 100644 --- a/conf/config.sh.dist +++ b/conf/config.sh.dist @@ -74,11 +74,11 @@ DATABASES=( OUTPUT_FOLDER="$AC_PATH_ROOT/env/dist/sql/" # -# Enable following flag -# if you want backup your db -# before import sql with db_assembler -# -BACKUP_ENABLE=true +# Set to true if you want to backup your db +# before importing the SQL with the db_assembler +# Do not forget to stop the database before doing so + +BACKUP_ENABLE=false BACKUP_FOLDER="$AC_PATH_ROOT/env/dist/sql/backup/" |