13 lines
253 B
Bash
13 lines
253 B
Bash
local_path="/srv/conduit"
|
|
backup_path="grapevine"
|
|
borg_extra_args=(
|
|
'--exclude=*.service'
|
|
'--exclude=*.yml'
|
|
'--exclude=*.toml'
|
|
'--exclude=.local'
|
|
'--exclude=.config'
|
|
'--exclude=.cache'
|
|
)
|
|
|
|
backup_pre() { :; }
|
|
backup_post() { :; }
|