Skip to content
Snippets Groups Projects
backup.job.dist 1.20 KiB
# ----------------------------------------------------------------------
# jobfile backup.job for schedulin
#
# ----------------------------------------------------------------------
#
# SYNTAX: 
# [variable] = [value]
#
# - variable must start in first column
# - char "=" must be surrounded by space
# - value - any string; no " needed
#
# ----------------------------------------------------------------------

# type = inc
type = auto

lang = en_us

# ----------------------------------------------------------------------
# scheduling for incremental backup and full backup
# for inc and full you can set
#   DOM:06,22        - days of month
#   DOW:Mon,Fri      - weekdays
#   WDM:1st Fri      - nth weekday in month
# ----------------------------------------------------------------------

inc = DOW:Mon,Tue,Wed,Thu,Fri,Sat,Sun

# full backups for type = inc
full = WDM:3rd Fri

# full backups for type = auto
# auto = <time> i.e. 1M 
auto = 1M

# --- when to start every day?

# incremental jobs
#   time HHMM ... multiple values with separated with "," and sorted
#   10:00,12:00,14:00,16:00,18:00
start-time-inc = 20:00
start-time-full = 20:00

# ----------------------------------------------------------------------