package/iwd: add sysv init script

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Seiderer 2020-06-16 08:34:31 +02:00 committed by Thomas Petazzoni
parent 119a0028c1
commit 2c01692f0b
2 changed files with 49 additions and 0 deletions

42
package/iwd/S40iwd Normal file
View file

@ -0,0 +1,42 @@
#!/bin/sh
DAEMON="/usr/libexec/iwd"
PIDFILE="/var/run/iwd.pid"
IWD_ARGS=""
[ -r "/etc/default/iwd" ] && . "/etc/default/iwd"
start() {
printf "Starting iwd:"
mkdir -p /tmp/iwd/hotspot
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "$DAEMON" \
-- $IWD_ARGS
status=$?
if [ "$status" -eq 0 ]; then
echo "OK"
else
echo "FAIL"
fi
return "$status"
}
stop() {
printf "Stopping iwd:"
start-stop-daemon -K -q -p "$PIDFILE"
status=$?
if [ "$status" -eq 0 ]; then
echo "OK"
else
echo "FAIL"
fi
return "$status"
}
case "$1" in
start|stop)
"$1";;
*)
echo "Usage: $0 {start|stop}"
exit 1
esac

View file

@ -59,4 +59,11 @@ endef
IWD_POST_INSTALL_TARGET_HOOKS += IWD_INSTALL_CONFIG_FILE
define IWD_INSTALL_INIT_SYSV
$(INSTALL) -m 0755 -D package/iwd/S40iwd \
$(TARGET_DIR)/etc/init.d/S40iwd
mkdir -p $(TARGET_DIR)/var/lib/iwd
ln -sf /tmp/iwd/hotspot $(TARGET_DIR)/var/lib/iwd/hotspot
endef
$(eval $(autotools-package))