1
0
Files
irix-657m-src/eoe/cmd/pcp/pmcd/etc_init.d_pcplocal
2022-09-29 17:59:04 +03:00

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