summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/seatd/seatd/init
blob: 0589c765ac7981ac76da1f049657ad65681301bd (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
38
39
40
41
42
43
44
45
#!/bin/sh
#
### BEGIN INIT INFO
# Provides: seatd
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
### END INIT INFO

killproc() {
        pid=`/bin/pidof $1`
        [ "$pid" != "" ] && kill $pid
}

case "$1" in
  start)
        seatd -g video -n 1 > /tmp/seatd-start-notify &
        [ -s /tmp/seatd-start-notify ] && exit 0
        sleep 0.1
        [ -s /tmp/seatd-start-notify ] && exit 0
        sleep 0.5
        [ -s /tmp/seatd-start-notify ] && exit 0
        sleep 5
        [ -s /tmp/seatd-start-notify ] && exit 0
        exit 1
  ;;

  stop)
        echo "Stopping seatd"
        killproc seatd
  ;;

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

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

exit 0