File: binary.init

package info (click to toggle)
lintian 2.127.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,448 kB
  • sloc: perl: 46,034; javascript: 9,151; makefile: 4,068; sh: 3,044; ansic: 705; xml: 451; python: 91; java: 15; cpp: 9; tcl: 4; lisp: 3
file content (21 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (26)
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