From 97d7f910bacbb01a8477f5e98b05fab8fe347f7b Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Tue, 13 Jul 2021 02:09:08 +0200 Subject: [PATCH] iwd: add vlogger for iwd and ead services iwd and ead does not log into syslog, just stderr. --- srcpkgs/iwd/files/ead/log/run | 2 ++ srcpkgs/iwd/files/ead/run | 2 +- srcpkgs/iwd/files/iwd/log/run | 2 ++ srcpkgs/iwd/files/iwd/run | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) create mode 100755 srcpkgs/iwd/files/ead/log/run create mode 100755 srcpkgs/iwd/files/iwd/log/run diff --git a/srcpkgs/iwd/files/ead/log/run b/srcpkgs/iwd/files/ead/log/run new file mode 100755 index 000000000000..22cce06edfd9 --- /dev/null +++ b/srcpkgs/iwd/files/ead/log/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec vlogger -p daemon.info -t ead diff --git a/srcpkgs/iwd/files/ead/run b/srcpkgs/iwd/files/ead/run index 0eabeb81ce80..be32e2dbfa37 100644 --- a/srcpkgs/iwd/files/ead/run +++ b/srcpkgs/iwd/files/ead/run @@ -1,3 +1,3 @@ #!/bin/sh [ -r ./conf ] && . conf -exec /usr/libexec/ead ${OPTS} +exec /usr/libexec/ead ${OPTS} 2>&1 diff --git a/srcpkgs/iwd/files/iwd/log/run b/srcpkgs/iwd/files/iwd/log/run new file mode 100755 index 000000000000..1e182b5a754e --- /dev/null +++ b/srcpkgs/iwd/files/iwd/log/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec vlogger -p daemon.info -t iwd diff --git a/srcpkgs/iwd/files/iwd/run b/srcpkgs/iwd/files/iwd/run index de3d52010360..f42e3cfc4ffa 100755 --- a/srcpkgs/iwd/files/iwd/run +++ b/srcpkgs/iwd/files/iwd/run @@ -1,3 +1,3 @@ #!/bin/sh [ -r ./conf ] && . ./conf -exec /usr/libexec/iwd ${OPTS} +exec /usr/libexec/iwd ${OPTS} 2>&1