#!/bin/sh # Program: roll_forward_ai # Purpose: This script backs-up all full AI extents to the backup # directory and initializes the extents for reuse # Syntax: roll_forward_ai # # Author: Adam Backman, Aaron Tetlow # Date Written: 03/09/98 # # Setup the generic variables SCRIPTS=${SCRIPTS-/u3/users/adamb/scripts} DLC=${DLC-/u10/dlc73} export SCRIPTS DLC # Roll forward AI file on the backup node $DLC/bin/_rfutil $1 -C roll forward -a $2 -B 5000 -TB 31 -TM 32 2>/dev/null 1>/dev/null if [ $? != 0 ] then echo "1" else echo "0" fi