#!/usr/bin/ksh ############################################################################### # # Module: isa # Author: Peter R. Schmidt # Description: Start or stop the ISA (Informix Server Administrator) # # Ok - it's not much of a script, but I can never remember the name of # that darned "isactl" program! # # Make sure the hard-coded path below is correct. # # Change Log # # Date Name Description................. # 09/25/00 Peter R. Schmidt Start Program # ############################################################################### if [ $# != 1 ] then echo "Usage: isa [ start | stop ]" exit 1 fi /opt/informix_isa/sbin/isactl $1