buildroot/package/seatd/S70seatd
Adrian Perez de Castro 60cee128c7 package/seatd: install init scripts
Add commands to the seatd package to install the systemd unit included
in the source tarball and a SysV init script, and ensure that the
"video" group gets created.

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
[yann.morin.1998@free.fr:
  - model the init script after package/busybox/S01syslogd
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-05-18 19:09:24 +02:00

47 lines
668 B
Bash
Executable File

#! /bin/sh
DAEMON="seatd"
DAEMON_EXE="/usr/bin/${DAEMON}"
PIDFILE="/run/${DAEMON}.pid"
start() {
printf 'Starting %s: ' "${DAEMON}"
start-stop-daemon -S -x "${DAEMON_EXE}" -p "${PIDFILE}" -m -b -- -g video
status=$?
if [ "$status" -eq 0 ]; then
echo OK
else
echo FAIL
fi
return "$status"
}
stop() {
printf 'Stopping %s: ' "${DAEMON}"
start-stop-daemon -K -x "${DAEMON_EXE}" -p "${PIDFILE}"
status=$?
if [ "$status" -eq 0 ]; then
echo OK
else
echo FAIL
fi
return "$status"
}
restart() {
stop
sleep 1
start
}
case "${1}" in
start|stop|restart)
"${1}";;
reload)
restart;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac