iwd: add vlogger for iwd and ead services
iwd and ead does not log into syslog, just stderr.
This commit is contained in:
parent
0e9b055fe2
commit
28c2213a6c
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exec vlogger -p daemon.info -t ead
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
[ -r ./conf ] && . conf
|
||||
exec /usr/libexec/ead ${OPTS}
|
||||
exec /usr/libexec/ead ${OPTS} 2>&1
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exec vlogger -p daemon.info -t iwd
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
[ -r ./conf ] && . ./conf
|
||||
exec /usr/libexec/iwd ${OPTS}
|
||||
exec /usr/libexec/iwd ${OPTS} 2>&1
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue