mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 21:49:40 +01:00
17 lines
369 B
Go
17 lines
369 B
Go
|
|
package pkg
|
||
|
|
|
||
|
|
const s3MountPath string = "/s3mnt"
|
||
|
|
const s3fsPasswdFile string = "/etc/passwd-s3fs"
|
||
|
|
|
||
|
|
var (
|
||
|
|
storage = "local"
|
||
|
|
file = ""
|
||
|
|
s3Path = "/mysql-bkup"
|
||
|
|
dbName = ""
|
||
|
|
dbHost = ""
|
||
|
|
dbPort = "3306"
|
||
|
|
executionMode = "default"
|
||
|
|
storagePath = "/backup"
|
||
|
|
disableCompression = false
|
||
|
|
)
|