#!/bin/bash # # chkconfig: 2345 90 05 # description: Start and Stop Oracle Application Database and Services # # OracleApplications Oracle Applications # # Author William A. Green, Jr. # # Source function library. . /etc/init.d/functions prog="Oracle Application Datadase and Services" start() { echo -n $"Starting $prog: " su oracle /home/oracle/startOraApps.sh echo } stop() { echo "Stopping $prog:" $KILLER 2> /dev/null su oracle /home/oracle/stopOraApps.sh echo } case "$1" in start) start ;; stop) stop ;; *) echo $"Usage: $0 {start|stop}" exit 1 esac #exit 0