summaryrefslogtreecommitdiffstats
path: root/admin/Sources/Clients/ogagent/linux/debian/ogagent.init
blob: f78341feaf849bfcef2182b23bccc1e07c58a3d2 (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 -e
### BEGIN INIT INFO
# Provides:          ogagent
# Required-Start:    $local_fs $remote_fs $network $syslog $named
# Required-Stop:     $local_fs $remote_fs $network $syslog $named
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: OpenGnSys Agent Service
### END INIT INFO
#

# . /lib/lsb/init-functions

case "$1" in
  start|stop|restart) 
    /usr/bin/ogagent $1
	;;
  force-reload)
  	/usr/bin/ogagent restart 
	;;
  *) echo "Usage: $0 {start|stop|restart|force-reload}" >&2; exit 1 ;;
esac