summaryrefslogtreecommitdiff
path: root/etc/init.d/commissioning
blob: 4fc73660520ed5b0d46126987ad7ed5b6e1860c5 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/lighttpd
DAEMONNAME="lighttpd"
NAME=commissioning
DESC="Lighttpd Web Server"
OPTS="-f /etc/lighttpd-commission.conf"
PIDFILE=/var/run/lighttpd-commission.pid 

ENABLED=yes
[ -f /etc/default/$NAME ] && . /etc/default/$NAME

# If we are not enabled, see if anybody has a password
if [[ ENABLED == no ]] ; then
    PASSWORDS=$(passwd -Sa | egrep '^[^[:space:]]+[[:space:]]P[[:space:]]' | wc -l)
    if (($PASSWORDS == 0)) ; then
	# No password, so turn on commissioning (php-fpm-commision will see this)
	rm /etc/default/$NAME
	ENABLED="yes"
    fi
fi

# To disable commissioning across a factory reset (and image install):
#   echo 'ENABLED="no"' >/var/config/.no-commissioning
#   ln -sf /var/config/.no-commissioning  /etc/default/no-commissioning

[ -f "/etc/default/no-${NAME}" ] && . "/etc/default/no-${NAME}"


case "$1" in
  start)
	if [ "$ENABLED" != "yes" ]; then
	  echo "$NAME: disabled in /etc/default"
	  exit
	fi
	echo -n "Starting $DESC: "
	start-stop-daemon --start -x "$DAEMON" -- $OPTS
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop -p ${PIDFILE} -x "$DAEMON"
	echo "$NAME."
	;;
  reload)
	echo -n "Reloading $DESC: "
        set -x
	pkill -HUP -F ${PIDFILE} "$DAEMONNAME"
	echo "$NAME."
	;;
  restart|force-reload)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop -p ${PIDFILE} -x "$DAEMON"
	sleep 1
	start-stop-daemon --start -x "$DAEMON" -- $OPTS
	echo "$NAME."
	;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0