aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/oprofile/oprofileui-server/init
blob: 2544ea4ac0b837c00b18c15ee14d8c09b65b9c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
### BEGIN INIT INFO
# Provides:          oprofile-server
# Required-Start:    $network
# Required-Stop:     $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: OProfileUI server
# Description:       
### END INIT INFO

. /etc/init.d/functions

case "$1" in
  start)
        echo "Starting OProfileUI server"
	. /etc/profile
	/usr/bin/oprofile-server &
  ;;

  stop)
        echo "Stopping OProfileUI server"
        killproc oprofile-server
  ;;

  restart)
	$0 stop
        sleep 1
        $0 start
  ;;

  *)
        echo "usage: $0 { start | stop | restart }"
  ;;
esac

exit 0