summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/init-d/init.d-lsb-headers/build-spec/debian/init.d-lsb-headers.init
blob: 847885cc0fa1954a0eef2f793eb18180577c4475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

set -e

### BEGIN INIT INFO
# Provides:          nothing $bad_facility
# Required-Start: mountall networking sysklogd
# Should-Start: portmap
# Required-Stop: mountnfs
# Default-Start: 0 6 X
# Default-Stop: S Y 0 6
# Short-Description: Do nothing at all
# Short-Description: Do nothing at all
# Description: The short description pretty much covers it.
### END INIT INFO

. /lib/lsb/init-functions

case "$1" in
    start|stop|force-reload|restart|status|*)
	echo hello world!
    ;;
esac