mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
35 lines
1.0 KiB
Bash
35 lines
1.0 KiB
Bash
#!/bin/bash
|
|
# REF: https://superuser.com/questions/32884/sshfs-mount-without-compression-or-encryption
|
|
|
|
# failexit.mrg
|
|
function failexit () {
|
|
echo '! Something failed! Code: '"$1 $2" # code # (and optional description)
|
|
exit $1
|
|
}
|
|
|
|
/bin/mv -v /var/cache/apt /var/cache/apt-old
|
|
mkdir -pv /var/cache/apt
|
|
|
|
#sshfs -o sshfs_debug -d -C -o Ciphers=chacha20-poly1305@openssh.com user@imacdual-linux:/zredteraB/shrcompr-zrtB /mnt/imacdual -o nonempty
|
|
# xxx TODO EDITME
|
|
sshfs -C -o Ciphers=chacha20-poly1305@openssh.com \
|
|
dave@10.9.13.4:/Volumes/sgtera2/var-cache-apt /var/cache/apt -o idmap=user
|
|
df -hT
|
|
|
|
ls -al /var/cache
|
|
[ $(df |grep -c /var/cache/apt) -gt 0 ] || failexit 101 "/var/cache/apt not mounted"
|
|
|
|
cd /var/cache/apt-old
|
|
pwd
|
|
echo "Enter to copy OLD /var/cache/apt files over, or ^C"
|
|
read
|
|
|
|
#time cp -apRv * /var/cache/apt
|
|
time rsync -av --remove-source-files --delete-after --max-delete=1 --prune-empty-dirs --progress \
|
|
/var/cache/apt-old/* /var/cache/apt/
|
|
|
|
#echo "Enter to compress old files (frees up space), or ^C"
|
|
#read
|
|
#time gzip -rv *
|
|
ls -alh /var/cache/apt
|