25 lines
432 B
Bash
25 lines
432 B
Bash
#! /sbin/sh
|
|
#
|
|
# pcplocal - perform local Performance Co-Pilot boot/shutdown/restart actions
|
|
#
|
|
# $Id: etc_init.d_pcplocal,v 2.2 1997/05/02 01:23:41 kenmcd Exp $
|
|
|
|
# Some degree of paranoia here ...
|
|
PATH=/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/usr/pcp/bin
|
|
export PATH
|
|
|
|
case $1 in
|
|
|
|
'start')
|
|
# Add startup actions here
|
|
;;
|
|
|
|
'stop')
|
|
# Add shutdown actions here
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop}"
|
|
;;
|
|
esac
|