aboutsummaryrefslogtreecommitdiffstats
path: root/service
blob: 7976625de6f493b8f2a247d1f5f083a5bc28fbff (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ -z "$1" ]; then
	echo "no service specified" >&2
	exit 1
elif [ -x "/etc/rc.d/init.d/$1" ]; then
	"/etc/rc.d/init.d/$1" $*
else
	echo "$1: unrecognized service" >&2
	exit 1
fi