iwd: add vlogger for iwd and ead services

iwd and ead does not log into syslog, just stderr.
This commit is contained in:
Jakub Jirutka 2021-07-13 02:09:08 +02:00 committed by Andrew J. Hesford
parent 0e9b055fe2
commit 28c2213a6c
5 changed files with 7 additions and 3 deletions

2
srcpkgs/iwd/files/ead/log/run Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec vlogger -p daemon.info -t ead

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ -r ./conf ] && . conf
exec /usr/libexec/ead ${OPTS}
exec /usr/libexec/ead ${OPTS} 2>&1

2
srcpkgs/iwd/files/iwd/log/run Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec vlogger -p daemon.info -t iwd

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ -r ./conf ] && . ./conf
exec /usr/libexec/iwd ${OPTS}
exec /usr/libexec/iwd ${OPTS} 2>&1

View File

@ -1,7 +1,7 @@
# Template file for 'iwd'
pkgname=iwd
version=1.15
revision=2
revision=3
build_style=gnu-configure
configure_args="--disable-systemd-service --enable-pie
--enable-dbus-policy --enable-wired"