summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/init-d/legacy-scripts/build-spec/orig/init-no-lsb
blob: 6b994dd3ba265ac5eadd94c9f4234b9a84cfda04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh
# No LSB section, but otherwise okay.  (Well, the messages are bad, but we
# don't check that yet.)

case "$1" in
  start)
	echo "Blah starting"
	;;
  stop)
        echo "Blah stopping"
        ;;
  restart|force-reload)
        echo "Blah restarting"
        ;;
esac

: