14 lines
249 B
Markdown
14 lines
249 B
Markdown
# srv-scripts
|
|
|
|
Execute `sync.sh` to copy these scripts on the server.
|
|
|
|
## Cron
|
|
|
|
Add this line into the host crontab with `crontab -e`.
|
|
```
|
|
PATH=/usr/local/bin:/usr/bin
|
|
|
|
# Backup volumes every days at 4am
|
|
0 4 * * * /usr/local/sbin/vol-backup-all
|
|
```
|