summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/init-d/init.d-lsb-headers/build-spec/debian/init.d-lsb-headers-remote.init
blob: c0a131c1fecd0de8238e3d32ac1474afd35ca793 (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: init.d-lsb-headers-remote
# Required-Start: $local_fs
# Required-Stop:
# Should-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Do nothing at all
# Description: The short description pretty much covers it.
### END INIT INFO

. /lib/lsb/init-functions
. /usr/share/foo/lib.sh

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