sync to various destinations
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
9468f9b060
commit
d1cd847c0a
3 changed files with 55 additions and 0 deletions
18
sync-to-42
Executable file
18
sync-to-42
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
~nico/bin/backup-marker
|
||||
|
||||
start=$(date)
|
||||
rsync -av --delete --progress \
|
||||
--exclude '/proc/*' \
|
||||
--exclude '/tmp/*' \
|
||||
--exclude '/sys/*' \
|
||||
--exclude '/dev/*' \
|
||||
--exclude '/home/users/nico/.bitcoin/blocks/' \
|
||||
--exclude '/home/users/nico/.bitcoin/chainstate/' \
|
||||
"$@" \
|
||||
/ 42:/home/services/backup/bento
|
||||
end=$(date)
|
||||
|
||||
echo $start
|
||||
echo $end
|
19
sync-to-fernseher
Executable file
19
sync-to-fernseher
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
|
||||
~nico/bin/backup-marker
|
||||
|
||||
start=$(date)
|
||||
rsync -av --delete --progress \
|
||||
--exclude '/proc/*' \
|
||||
--exclude '/tmp/*' \
|
||||
--exclude '/sys/*' \
|
||||
--exclude '/dev/*' \
|
||||
--exclude '/home/users/nico/.bitcoin/blocks/' \
|
||||
--exclude '/home/users/nico/.bitcoin/chainstate/' \
|
||||
"$@" \
|
||||
/ root@192.168.25.45:/mnt
|
||||
|
||||
end=$(date)
|
||||
|
||||
echo $start
|
||||
echo $end
|
18
sync-to-zuhause
Executable file
18
sync-to-zuhause
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
~nico/bin/backup-marker
|
||||
|
||||
start=$(date)
|
||||
rsync -av --delete --progress \
|
||||
--exclude '/proc/*' \
|
||||
--exclude '/tmp/*' \
|
||||
--exclude '/sys/*' \
|
||||
--exclude '/dev/*' \
|
||||
--exclude '/home/users/nico/.bitcoin/blocks/' \
|
||||
--exclude '/home/users/nico/.bitcoin/chainstate/' \
|
||||
"$@" \
|
||||
/ root@zuhause.schottelius.org:/home/services/backup/bento-manuell
|
||||
end=$(date)
|
||||
|
||||
echo $start
|
||||
echo $end
|
Loading…
Reference in a new issue