NetBSD/share/sushi/procs/startallprocs/script

13 lines
226 B
Bash
Executable File

#!/bin/sh
# $NetBSD: script,v 1.1 2001/04/26 02:26:20 garbled Exp $
if [ "$1" = "none" ]; then
echo "None selected, no action taken"
exit 0
fi
/etc/rc.d/$1 forcestart
if [ "$?" != "0" ]; then
echo "Failed to start $1"
fi