summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/files/permissions/files-bad-perm-owner/build-spec/debian/binary.init
blob: 4ebbdf5b02c4dbdd97102214464d70b8510d6c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e

### BEGIN INIT INFO
# Provides: binary
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Useless
# Description: Does nothing
### END INIT INFO

. /lib/lsb/init-functions

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