mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 21:49:40 +01:00
22 lines
511 B
Go
22 lines
511 B
Go
package pkg
|
|
|
|
const cronLogFile = "/var/log/mysql-bkup.log"
|
|
const tmpPath = "/tmp/backup"
|
|
const backupCronFile = "/usr/local/bin/backup_cron.sh"
|
|
const algorithm = "aes256"
|
|
const gpgExtension = "gpg"
|
|
|
|
var (
|
|
storage = "local"
|
|
file = ""
|
|
dbPassword = ""
|
|
dbUserName = ""
|
|
dbName = ""
|
|
dbHost = ""
|
|
dbPort = "3306"
|
|
executionMode = "default"
|
|
storagePath = "/backup"
|
|
disableCompression = false
|
|
encryption = false
|
|
)
|