Skip to content
Snippets Groups Projects

Eliminate scheduler

Merged Hahn Axel (hahn) requested to merge eliminate-scheduler into master
7 files
+ 333
131
Compare changes
  • Side-by-side
  • Inline

Files

# dist file #
```
# ----------------------------------------------------------------------
# jobfile backup.job for scheduling local dumps
#
# SYNTAX:
# [variable] = [value]
#
# - variable must start in first column
# - char "=" must be surrounded by space
# - value - any string; no " needed
#
# ----------------------------------------------------------------------
lang = en_us
# ----------------------------------------------------------------------
# local dumps; each service has its own subdir there
# this entry is mapped to BACKUP_TARGETDIR in "localdump.sh"
# ----------------------------------------------------------------------
dir-localdumps = /var/localdumps/backup
keep-days = 7
# archive databases (to keep deleted schemes or databases that
# are not backupped anymore; couchdb2 feature)
dir-dbarchive = /var/localdumps/archive
# ----------------------------------------------------------------------
```
# Description #
## dir-dbarchive ##
Target dir for database archives (to keep deleted schemes or databases that are not backupped anymore; couchdb2 feature)
`dir-dbarchive = /var/localdumps/archive`
## dir-localdumps ##
Target dir for database backups of all types.
Below that directory a subdir for the database type will be created (i.e. mysql or pgsql).
`dir-localdumps = /var/localdumps/backup`
see also **keep-days**
## keep-days ##
How many days to keep database dumps locally in `dir-localdumps = ...`
`keep-days = 7`
see also **dir-localdumps**
## lang ##
Language of the shell. Do not change to keep documented keywords for date and time.
Loading