remove compromised variables values
This commit is contained in:
parent
10e235ab0b
commit
297c047dc9
18
backup_nc.sh
18
backup_nc.sh
|
@ -17,21 +17,21 @@
|
|||
PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
|
||||
|
||||
# variables push notifications
|
||||
readonly GOTIFY_TOKEN="ABlynaRwExiItgY"
|
||||
readonly GOTIFY_HOST="https://push.studi7.com"
|
||||
readonly GOTIFY_TOKEN="<GOTIFY_TOKEN>"
|
||||
readonly GOTIFY_HOST="<GOTIFY_HOST>"
|
||||
readonly GOTIFY_PRIORITY=5
|
||||
# backup db variables
|
||||
readonly BACKUP_DB_FILE="nextcloud-sqlbkp-"`date +\%Y\%m\%d`".sql"
|
||||
readonly DB_HOST="localhost"
|
||||
readonly DB_USER="nextcloud"
|
||||
readonly DB_PASS="3mZlNTeS"
|
||||
readonly DB_NAME="nextcloud"
|
||||
readonly DB_HOST="<DB_HOST>"
|
||||
readonly DB_USER="<DB_USER>"
|
||||
readonly DB_PASS="<DB_PASS>"
|
||||
readonly DB_NAME="<DB_NAME>"
|
||||
# backup data variables
|
||||
readonly NEXTCLOUD_DATA="/mnt/md0/nextcloud/data"
|
||||
readonly NEXTCLOUD_DATA="<NEXTCLOUD_DATA>"
|
||||
readonly INCLUDE_LIST="include-list"
|
||||
# remote settings
|
||||
readonly REMOTE_SERVER="backups.studi7.com"
|
||||
readonly REMOTE_PATH="/home/debian/backups/studi7/nextcloud"
|
||||
readonly REMOTE_SERVER="<REMOTE_SERVER>"
|
||||
readonly REMOTE_PATH="<REMOTE_PATH>"
|
||||
readonly REMOTE_NC_DATA_FOLDER="files"
|
||||
readonly REMOTE_NC_DB_FOLDER="db"
|
||||
readonly BACKUP_PRESERVE_DAYS=60
|
||||
|
|
Loading…
Reference in New Issue