mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
60cee128c7
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>
47 lines
668 B
Bash
Executable File
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
|