blob: d3b0d1873ebb89404d29ee34059ec2c82574bdd9 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
2#
3### BEGIN INIT INFO
4# Provides: weston
5# Required-Start: $local_fs $remote_fs
6# Required-Stop: $local_fs $remote_fs
7# Default-Start: 2 3 4 5
8# Default-Stop: 0 1 6
9### END INIT INFO
10
11if test -e /etc/default/weston ; then
12 . /etc/default/weston
13fi
14
15killproc() {
16 pid=`/bin/pidof $1`
17 [ "$pid" != "" ] && kill $pid
18}
19
20read CMDLINE < /proc/cmdline
21for x in $CMDLINE; do
22 case $x in
23 weston=false)
24 echo "Weston disabled"
25 exit 0;
26 ;;
27 esac
28done
29
30case "$1" in
31 start)
32 . /etc/profile
Andrew Geissler95ac1b82021-03-31 14:34:31 -050033 export HOME=ROOTHOME
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000035 WESTON_USER=weston weston-start $OPTARGS &
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036 ;;
37
38 stop)
39 echo "Stopping Weston"
40 killproc weston
41 ;;
42
43 restart)
44 $0 stop
45 sleep 1
46 $0 start
47 ;;
48
49 *)
50 echo "usage: $0 { start | stop | restart }"
51 ;;
52esac
53
54exit 0