#!/bin/sh
#
# Written by Troy Dawson February 18, 2002
#
# Sync up linux1 to linux
#  This script is supposed to sync up the whole /export/linux directory
#
# $Id: rsync.linux.quartz.73rolling.sh,v 1.3 2003/04/17 14:25:11 dawson Exp $
#*********************
# variables
#*********************
SOURCEDIR="/usr/src/rescue"
DESTDIR="root@yort:/mnt/src/90rolling/i386/misc"

#*********************
# Do The Work
#*********************
/usr/bin/rsync $1 -avzl -e "ssh -c blowfish -l root" --delete $SOURCEDIR/superduperrescue/ $DESTDIR/superduperrescue/fermi/ 
