2021-01-11 15:03:20 +01:00
|
|
|
# role native-pull-primary-backups
|
2020-12-26 19:38:19 +01:00
|
|
|
|
2021-01-10 20:35:37 +01:00
|
|
|
## goal
|
|
|
|
This script allows to pull backups from a remote server.
|
|
|
|
|
|
|
|
## scheme
|
|
|
|
It is part of the following scheme:
|
|
|
|
![backup scheme](https://www.veen.world/wp-content/uploads/2020/12/server-backup-768x567.jpg) <br />
|
|
|
|
Further information you will find [in this blog post](https://www.veen.world/2020/12/26/how-i-backup-dedicated-root-servers/).
|
|
|
|
|
2021-01-05 19:40:52 +01:00
|
|
|
## debug
|
2021-01-10 20:35:37 +01:00
|
|
|
|
2021-01-05 19:40:52 +01:00
|
|
|
### live
|
2020-12-26 19:38:19 +01:00
|
|
|
To track what the service is doing execute the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
watch -n2 "systemctl status pull-remote-backups.service"
|
|
|
|
```
|
2021-01-05 19:40:52 +01:00
|
|
|
|
|
|
|
### history
|
|
|
|
```bash
|
|
|
|
sudo journalctl -u pull-remote-backups
|
|
|
|
```
|
2021-01-11 14:14:36 +01:00
|
|
|
|
|
|
|
## see
|
|
|
|
- https://superuser.com/questions/363444/how-do-i-get-the-output-and-exit-value-of-a-subshell-when-using-bash-e
|
|
|
|
- https://gist.github.com/otkrsk/b0ffd4018e8a79b9010c461af298471e
|