File: init-no-lsb

package info (click to toggle)
lintian 1.23.28%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 2,044 kB
  • ctags: 295
  • sloc: perl: 5,038; makefile: 702; python: 431; sh: 329; ansic: 30; tcl: 4; sed: 1
file content (17 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (151)
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

: