blob: b686052bf0ff1e9a68a83c9edb15a6a4a16ab783 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
name="seatd"
description="Seat management daemon"
command="/usr/bin/seatd"
command_args="-g video -l ${loglevel:-error} ${command_args:-}"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
if [ "$loglevel" != 'silent' ]; then
: ${error_logger="logger -t $name -p daemon.${loglevel:-error} >/dev/null 2>&1"}
fi
|