Displaying 1 result from an estimated 1 matches for "pqcat".
2006 Jun 01
3
Assistance with startup script
...Where all do entries need to be made, and what would they consist of?
Many thanks.....
Sam
------------------------------------------------------------------------
#! /bin/sh
export PATH=/bin:/usr/bin
LDMHOME=/usr/local/ldm
LDMBIN=$LDMHOME/bin
LDMADMIN=$LDMBIN/ldmadmin
PQCHECK=$LDMBIN/pqcheck
PQCAT=$LDMBIN/pqcat
PQ=$LDMHOME/data/ldm.pq
LOG="logger -p local0.err $0:"
case "$1" in
start)
$LOG 'Starting LDM system...'
if [ -x $LDMADMIN ] ; then
if su - ldm -c "$LDMADMIN isrunning"; then
$LOG "LDM system is already running."...