blob: c8d7b00487a9c7cf88b7724609370b4b058b180d (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
PATH=$PATH:/usr/local/bin
# Sync Joern's content over to Fishfinger!
if [ `hostname -s` = fishfinger ]; then
rsync -av --delete rsync://blowfish.wg0.wan.buetow.org/joernshtdocs/ /var/www/htdocs/joern/
fi
|