User's Manual

Customizing the DecisioNet System D-29
Backup File Location for UNIX
When you use eplbackup to start EPL File Backup at a UNIX prompt,
the posteplbackup script is executed to determine where to copy the
backed up files after eplbackup places the backup files in the
/appl/epl/data/backup/mmddyyyy directory.
In a UNIX system, modify the posteplbackup script file in the
/appl/epl/bin/ to identify where to copy the backed up files.
!/bin/ksh
#
# This scripts accepts a single argument which identifies the directory
# where all the data files have been backed up to.
#
# The command below makes a cpio copy of the backup files to tape. In this #
example, it is assumed that the tape device is /dev/rmt/c0t3d0s0. Before #
copying the files to the tape drive, the file are compressed.
#
# Compress $1/*
# Find $1 –print |cpio –ocvB >/dev/rmt/c0t3d0s0
#
#
exit 0