mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 13:39:41 +01:00
19 lines
470 B
Go
19 lines
470 B
Go
package pkg
|
|
|
|
const s3MountPath string = "/s3mnt"
|
|
const s3fsPasswdFile string = "/etc/passwd-s3fs"
|
|
const cronLogFile = "/var/log/mysql-bkup.log"
|
|
const backupCronFile = "/usr/local/bin/backup_cron.sh"
|
|
|
|
var (
|
|
storage = "local"
|
|
file = ""
|
|
s3Path = "/mysql-bkup"
|
|
dbName = ""
|
|
dbHost = ""
|
|
dbPort = "3306"
|
|
executionMode = "default"
|
|
storagePath = "/backup"
|
|
disableCompression = false
|
|
)
|