bk.sh: Restructure
This commit is contained in:
parent
dd7c370a84
commit
cb9cdf0d38
@ -1,16 +1,34 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Remote backup script
|
# Remote backup script
|
||||||
|
# Either push files to remote or receive full backup tarballs
|
||||||
|
|
||||||
|
while getopts ":pr" o; do
|
||||||
|
case "${o}" in
|
||||||
|
p) ACTION=PUSH ;;
|
||||||
|
r) ACTION=RECV ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $ACTION = PUSH ]
|
||||||
|
then
|
||||||
|
rsync -avzP \
|
||||||
|
--chown=dogeystamp:sftpr \
|
||||||
|
--exclude=med/mus \
|
||||||
|
--exclude=med/gv \
|
||||||
|
--exclude=dox/dow \
|
||||||
|
--exclude=dox/rss \
|
||||||
|
--exclude=dox/rem \
|
||||||
|
--exclude=dox/proj \
|
||||||
|
--exclude=dox/vms \
|
||||||
|
--exclude=med/pix/hdri \
|
||||||
|
--exclude=med/memes/woof/quar \
|
||||||
|
~/med ~/dox dogeystamp@lambda:/mnt/disk/uv/
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $ACTION = RECV ]
|
||||||
|
then
|
||||||
|
rsync -avzP \
|
||||||
|
dogeystamp@lambda:~/mnt/disk_b/ ~/arc/bk/
|
||||||
|
fi
|
||||||
|
|
||||||
rsync -avzP \
|
|
||||||
--chown=dogeystamp:sftpr \
|
|
||||||
--exclude=mus \
|
|
||||||
--exclude=gv \
|
|
||||||
--exclude=dow \
|
|
||||||
--exclude=rss \
|
|
||||||
--exclude=rem \
|
|
||||||
--exclude=proj \
|
|
||||||
--exclude=vms \
|
|
||||||
--exclude=pix/hdri \
|
|
||||||
--exclude=memes/woof/quar \
|
|
||||||
~/med ~/dox dogeystamp@lambda:/mnt/disk/uv/
|
|
||||||
|
Loading…
Reference in New Issue
Block a user