File: init-lsb-broken

package info (click to toggle)
lintian 2.5.50.4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 18,268 kB
  • ctags: 1,873
  • sloc: perl: 30,993; sh: 6,133; makefile: 3,443; xml: 1,805; ansic: 568; python: 65; cpp: 9; java: 9; tcl: 4
file content (34 lines) | stat: -rw-r--r-- 870 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /bin/sh
### BEGIN INIT INFO
# Provides:          bad-lsb
#  Required-Start:    $local_fs $remote_fs
# Required-Stop:     
# Default-Start:     1 2 3 4 5
# Default-Stop:      S 0 1 6 X
# Short-Description: Example initscript
#                    but this can't be continued
# Description:       An example of a bad LSB section in an init script.
#                    This continuation is allowed (with spaces).
#			This one is too (with tabs).
# X-Debian-Foo:      Some unknown but valid keyword.
# Foo:               Some invalid keyword.

# Whoops, no terminating line.

# And then we have this duplicate section.
### BEGIN INIT INFO
# Required-Start:    This one doesn't count.
### END INIT INFO

# Hey, look at all of those missing actions!  But stop isn't missing.
case "$1" in
  start|stop)
	echo "Blah"
	;;
  *)
	echo "Usage: foo start" >&2
	exit 3
	;;
esac

: