# !/bin/sh

# backup-dj.sh - Script for automatic backup to disk of WAIS project

# This script is expected to be run by cron, so it should be listed in
# odin:/var/cron/crontabs/... using the crontab command.  
# Entry looks something like:
#      30 3 * * 1-6 /public/Wais/etc/backup-wais.sh > /dev/null

# fad Wed Sep 21 1988 - Created.
# fad Tue Jun 26 1990 - Adapted for /public/Wais

# $Header: /tmp_mnt/am/public/Wais/RCS/backup-wais.sh,v 1.3 90/07/05 10:14:40 fad Exp $

SOURCEDIR=/public/Wais
DESTDIR=/epoch2/Wais/backup
USERS="fad1"

/public/Wais/etc/backup.sh $SOURCEDIR $DESTDIR $USERS
