added sample config
This commit is contained in:
parent
db125801b2
commit
a86ffc08f9
4 changed files with 58 additions and 0 deletions
23
conf/conf-db-sample
Normal file
23
conf/conf-db-sample
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Sample config file for a database backup
|
||||
# To enable this backup, softlink or copy to ./db
|
||||
|
||||
# Auxiliary variable declarations
|
||||
baseDir="/var/lib/backup"
|
||||
|
||||
# Name of the backup, used for the log
|
||||
name="simple_wordpress"
|
||||
# Service that must be stopped before the backup takes place
|
||||
service="httpd"
|
||||
# Directory in which a backup will be created (inside a directory with the
|
||||
# current date-time), along with its checksum.
|
||||
outDir="${baseDir}/${name}"
|
||||
# Database settings: name, user (with read permissions) and password for said user
|
||||
dbName="my_wordpress_user"
|
||||
dbUser="my_wordpress_db"
|
||||
dbPassword="my_secret_password"
|
||||
# Maximum number of backups to keep. When the number is reached, the oldest
|
||||
# will be deleted until the maximum is satisfied. 0 == infinity
|
||||
maxBackups=30
|
||||
|
||||
# Auxiliary variable removal
|
||||
unset baseDir
|
Loading…
Add table
Add a link
Reference in a new issue