mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-09-21 13:31:42 +00:00
9 lines
112 B
Bash
9 lines
112 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if ! restic snapshots >/dev/null 2>&1; then
|
|
restic init
|
|
fi
|
|
|
|
exec crond -f -l 2
|