c70431fb0d
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
15 lines
197 B
Bash
Executable file
15 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dir="/home/"
|
|
|
|
case $(hostname) in
|
|
kr)
|
|
other="root@ikn.ethz.ch"
|
|
;;
|
|
|
|
ikn)
|
|
other="root@kr.ethz.ch"
|
|
;;
|
|
esac
|
|
|
|
sudo rsync -av --delete-before --delete $dir $other:$dir
|