add script to wake up local pcs

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
Nico Schottelius 2013-12-10 22:58:31 +01:00
commit 68572a49ba
6 changed files with 15 additions and 76 deletions

26
sync-from Executable file
View file

@ -0,0 +1,26 @@
#!/bin/sh -e
################################################################################
# standard vars stolen from cconf
__pwd="$(pwd -P)"
__mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)"
__myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname"
src=root@loch:/home/services/backup/bento-manuell/
if [ $# -ne 1 ]; then
echo "$0: $dst"
exit 1
fi
dst=$1; shift
sshdir=$(cd "$__abs_mydir/../.ssh" && pwd -P)
sshkey=$sshdir/id_rsa
d1=$(date)
set -x
rsync -av -e "ssh -i $sshkey" --delete "$src" "$dst"
echo $d1
date