Github messages for voidlinux
 help / color / mirror / Atom feed
From: classabbyamp <classabbyamp@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] common/environment/setup/install.sh: always add log service
Date: Thu, 02 Feb 2023 09:21:33 +0100	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-42026@inbox.vuxu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1191 bytes --]

There is a new pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages how-much-log-would-a-woodchuck-chuck-if-a-woodchuck-could-chuck-log
https://github.com/void-linux/void-packages/pull/42026

common/environment/setup/install.sh: always add log service
- common/environment/setup/install.sh: always add log service
    - overridable by having a log service at `$pkgname/files/$service/log`
    - warns if stderr is not redirected in the main service
    - uses a sane default run script with the service name set as tag and daemon facility
- Manual.md: document vsv log autocreation
- *: remove log dir en-masse

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

### TODO
- [ ] go through all removed log services and see if any need overrides

### Questions
- Should there be a possible second vlogger argument that sets the facility? This would remove the need for overrides for the few services that set cron/mail as facility


A patch file from https://github.com/void-linux/void-packages/pull/42026.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-how-much-log-would-a-woodchuck-chuck-if-a-woodchuck-could-chuck-log-42026.patch --]
[-- Type: text/x-diff, Size: 53199 bytes --]

From 5ad869de73321185840a65b257e2800f79999ef4 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Thu, 2 Feb 2023 03:02:12 -0500
Subject: [PATCH 1/3] common/environment/setup/install.sh: always add log
 service

- overridable by having a log service at `$pkgname/files/$service/log`
- warns if stderr is not redirected in the main service
- uses a sane default run script with the service name set as tag and
  daemon facility
---
 common/environment/setup/install.sh | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/common/environment/setup/install.sh b/common/environment/setup/install.sh
index 5f0571de14ae..67ab04440488 100644
--- a/common/environment/setup/install.sh
+++ b/common/environment/setup/install.sh
@@ -34,17 +34,22 @@ _vsv() {
 	vmkdir etc/sv
 	vcopy "${FILESDIR}/$service" etc/sv
 	if [ ! -L $svdir/run ]; then
+		grep -q 'exec 2>&1' $svdir/run || msg_warn "$pkgver: vsv: service '$service' does not contain 'exec 2>&1' to log stderr\n"
 		chmod 755 $svdir/run
 	fi
 	if [ -e $svdir/finish ] && [ ! -L $svdir/finish ]; then
 		chmod 755 $svdir/finish
 	fi
 	ln ${LN_OPTS} /run/runit/supervise.${service} $svdir/supervise
-	if [ -d $svdir/log ]; then
-		ln ${LN_OPTS} /run/runit/supervise.${service}-log $svdir/log/supervise
-		if [ -e $svdir/log/run ] && [ ! -L $svdir/log/run ]; then
-			chmod 755 ${PKGDESTDIR}/etc/sv/${service}/log/run
-		fi
+	if [ -d $svdir/log ] || [ -L $svdir/log ]; then
+		msg_warn "$pkgver: vsv: overriding default log service\n"
+	else
+		mkdir $svdir/log
+		printf '#!/bin/sh\nexec vlogger -p daemon -t %s\n' "$service" > $svdir/log/run
+	fi
+	ln ${LN_OPTS} /run/runit/supervise.${service}-log $svdir/log/supervise
+	if [ -e $svdir/log/run ] && [ ! -L $svdir/log/run ]; then
+		chmod 755 ${PKGDESTDIR}/etc/sv/${service}/log/run
 	fi
 }
 

From f1e912f8b95ab1acda58c7b8f362d01092f2e2bc Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Thu, 2 Feb 2023 03:09:42 -0500
Subject: [PATCH 2/3] Manual.md: document vsv log autocreation

---
 Manual.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Manual.md b/Manual.md
index a5e99d29fe4c..95b79f75d55c 100644
--- a/Manual.md
+++ b/Manual.md
@@ -312,6 +312,8 @@ The following functions are defined by `xbps-src` and can be used on any templat
 	is automatically made executable by this function.
 	For further information on how to create a new service directory see
 	[The corresponding section the FAQ](http://smarden.org/runit/faq.html#create).
+	A `log` sub-service will be automatically created if one does not exist in
+	`${FILESDIR}/$service`, containing `exec vlogger -p daemon -t $service`.
 
 - *vsed()* `vsed -i <file> -e <regex>`
 

From defafa4b3ea4914532a10188a04b9035a1c9ff96 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Thu, 2 Feb 2023 03:10:03 -0500
Subject: [PATCH 3/3] *: remove log dir en-masse

---
 srcpkgs/Clightd/files/Clightd/log/run                     | 3 ---
 srcpkgs/Gokapi/files/gokapi/log/run                       | 3 ---
 srcpkgs/NetAuth-ldap/files/netauth-ldap/log/run           | 4 ----
 srcpkgs/NetAuth/files/netauthd/log/run                    | 4 ----
 srcpkgs/PopCorn/files/popcorn/log/run                     | 2 --
 srcpkgs/TerraState/files/terrastate/log/run               | 4 ----
 srcpkgs/activityrelay/files/activityrelay/log/run         | 1 -
 srcpkgs/apache-kafka/files/apache-kafka-zookeeper/log/run | 2 --
 srcpkgs/apache-kafka/files/apache-kafka/log/run           | 2 --
 srcpkgs/autofs/files/autofs/log/run                       | 2 --
 srcpkgs/beanstalkd/files/beanstalkd/log/run               | 2 --
 srcpkgs/bind/files/named/log/run                          | 2 --
 srcpkgs/bluez/files/bluetooth-meshd/log/run               | 1 -
 srcpkgs/bluez/files/bluetoothd/log/run                    | 1 -
 srcpkgs/boinc/files/boinc/log/run                         | 1 -
 srcpkgs/busybox/files/busybox-ntpd/log/run                | 2 --
 srcpkgs/caddy/files/caddy/log/run                         | 1 -
 srcpkgs/ckb-next/files/ckb-next-daemon/log/run            | 2 --
 srcpkgs/conduit/files/conduit/log/run                     | 1 -
 srcpkgs/coredns/files/coredns/log/run                     | 3 ---
 srcpkgs/coturn/files/coturnserver/log/run                 | 1 -
 srcpkgs/cronie/files/cronie/log/run                       | 2 --
 srcpkgs/dcron/files/dcron/log/run                         | 2 --
 srcpkgs/dendrite/files/dendrite-monolith-server/log/run   | 1 -
 srcpkgs/dhcp/files/dhclient/log/run                       | 1 -
 srcpkgs/dhcp/files/dhcpd4/log/run                         | 1 -
 srcpkgs/dhcp/files/dhcpd6/log/run                         | 1 -
 srcpkgs/dkimproxy/files/dkimproxy_in/log/run              | 2 --
 srcpkgs/dkimproxy/files/dkimproxy_out/log/run             | 2 --
 srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/log/run       | 2 --
 srcpkgs/dotool/files/dotoold/log/run                      | 2 --
 srcpkgs/dq/files/dqcache/log/run                          | 2 --
 srcpkgs/duiadns/files/duiadns/log/run                     | 3 ---
 srcpkgs/earlyoom/files/earlyoom/log/run                   | 2 --
 srcpkgs/espeakup/files/espeakup/log/run                   | 2 --
 srcpkgs/gerbera/files/gerbera/log/run                     | 1 -
 srcpkgs/gitea/files/gitea/log/run                         | 1 -
 srcpkgs/go-ipfs/files/ipfs/log/run                        | 1 -
 srcpkgs/goatcounter/files/goatcounter/log/run             | 2 --
 srcpkgs/gotify-server/files/gotify-server/log/run         | 1 -
 srcpkgs/grafana/files/grafana/log/run                     | 2 --
 srcpkgs/grub-btrfs/files/grub-btrfs/log/run               | 2 --
 srcpkgs/i2pd/files/i2pd/log/run                           | 1 -
 srcpkgs/incron/files/incron/log/run                       | 2 --
 srcpkgs/influxdb/files/influxdb/log/run                   | 2 --
 srcpkgs/iwd/files/ead/log/run                             | 2 --
 srcpkgs/iwd/files/iwd/log/run                             | 2 --
 srcpkgs/libvirt/files/libvirt-generic/log/run             | 7 -------
 srcpkgs/libvirt/files/libvirtd/log/run                    | 1 -
 srcpkgs/libvirt/files/virtinterfaced/log/run              | 1 -
 srcpkgs/libvirt/files/virtlockd/log/run                   | 1 -
 srcpkgs/libvirt/files/virtlogd/log/run                    | 1 -
 srcpkgs/libvirt/files/virtlxcd/log/run                    | 1 -
 srcpkgs/libvirt/files/virtnetworkd/log/run                | 1 -
 srcpkgs/libvirt/files/virtnodedevd/log/run                | 1 -
 srcpkgs/libvirt/files/virtnwfilterd/log/run               | 1 -
 srcpkgs/libvirt/files/virtproxyd/log/run                  | 1 -
 srcpkgs/libvirt/files/virtqemud/log/run                   | 1 -
 srcpkgs/libvirt/files/virtsecretd/log/run                 | 1 -
 srcpkgs/libvirt/files/virtstoraged/log/run                | 1 -
 srcpkgs/libvirt/files/virtvboxd/log/run                   | 1 -
 srcpkgs/libvirt/files/virtxend/log/run                    | 1 -
 srcpkgs/lldpd/files/lldpd/log/run                         | 1 -
 srcpkgs/lsyncd/files/lsyncd/log/run                       | 2 --
 srcpkgs/lxd/files/lxd/log/run                             | 2 --
 srcpkgs/mariadb/files/mysqld/log/run                      | 2 --
 srcpkgs/minidlna/files/minidlnad/log/run                  | 1 -
 srcpkgs/miniflux/files/miniflux/log/run                   | 1 -
 srcpkgs/minio/files/minio/log/run                         | 2 --
 srcpkgs/moby/files/docker/log/run                         | 1 -
 srcpkgs/monero/files/monerod/log/run                      | 3 ---
 srcpkgs/mumble/files/mumble-server/log/run                | 3 ---
 srcpkgs/ndhc/files/ndhc/log/run                           | 2 --
 srcpkgs/ndppd/files/ndppd/log/run                         | 3 ---
 srcpkgs/neard/files/neard/log/run                         | 1 -
 srcpkgs/neard/files/seeld/log/run                         | 1 -
 srcpkgs/nebula/files/nebula/log/run                       | 2 --
 srcpkgs/net-snmp/files/snmpd/log/run                      | 1 -
 srcpkgs/node_exporter/files/node_exporter/log/run         | 2 --
 srcpkgs/openntpd/files/openntpd/log/run                   | 2 --
 srcpkgs/openrgb/files/openrgb/log/run                     | 2 --
 srcpkgs/oragono/files/oragono/log/run                     | 2 --
 srcpkgs/podman/files/podman/log/run                       | 1 -
 srcpkgs/postgresql13/files/postgresql13/log/run           | 2 --
 srcpkgs/postgresql14/files/postgresql14/log/run           | 2 --
 srcpkgs/preload/files/preload/log/run                     | 2 --
 srcpkgs/privoxy/files/privoxy/log/run                     | 2 --
 srcpkgs/prometheus/files/prometheus/log/run               | 2 --
 srcpkgs/qrtr-ns/files/qrtr-ns/log/run                     | 1 -
 srcpkgs/radicale/files/radicale/log/run                   | 2 --
 srcpkgs/routinator/files/routinator/log/run               | 1 -
 srcpkgs/samba/files/ctdbd/log/run                         | 2 --
 srcpkgs/samba/files/nmbd/log/run                          | 2 --
 srcpkgs/samba/files/smbd/log/run                          | 2 --
 srcpkgs/sklogw/files/sklogw/log/run                       | 5 -----
 srcpkgs/snapcast/files/snapclient/log/run                 | 2 --
 srcpkgs/snapcast/files/snapserver/log/run                 | 2 --
 srcpkgs/sndio/files/sndiod/log/run                        | 2 --
 srcpkgs/socklog-ucspi/files/socklog-ucspi-tcp/log/run     | 3 ---
 srcpkgs/soju/files/soju/log/run                           | 2 --
 srcpkgs/spreed-webrtc/files/spreed-webrtc-server/log/run  | 2 --
 srcpkgs/sqmail/files/qmail-send/log/run                   | 2 --
 srcpkgs/sqmail/files/qmail-smtpd/log/run                  | 2 --
 srcpkgs/sqmail/files/qmail-smtpsd/log/run                 | 2 --
 srcpkgs/sqmail/files/qmail-smtpsub/log/run                | 2 --
 srcpkgs/stubby/files/stubby/log/run                       | 2 --
 srcpkgs/syncthing/files/discosrv/log/run                  | 3 ---
 srcpkgs/syncthing/files/relaysrv/log/run                  | 3 ---
 srcpkgs/tailscale/files/tailscaled/log/run                | 4 ----
 srcpkgs/thermald/files/thermald/log/run                   | 1 -
 srcpkgs/tqftpserv/files/tqftpserv/log/run                 | 1 -
 srcpkgs/trousers/files/tcsd/log/run                       | 2 --
 srcpkgs/umurmur/files/umurmurd/log/run                    | 3 ---
 srcpkgs/up_rewrite/files/up_rewrite/log/run               | 1 -
 srcpkgs/upmpdcli/files/upmpdcli/log/run                   | 2 --
 srcpkgs/varnish/files/varnishd/log/run                    | 2 --
 srcpkgs/vaultwarden/files/vaultwarden/log/run             | 1 -
 srcpkgs/vnstat/files/vnstatd/log/run                      | 1 -
 srcpkgs/waydroid/files/waydroid-container/log/run         | 1 -
 srcpkgs/webhook/files/webhook/log/run                     | 2 --
 srcpkgs/wireplumber/files/wireplumber/log/run             | 3 ---
 srcpkgs/x2goserver/files/x2gocleansessions/log/run        | 2 --
 srcpkgs/yggdrasil/files/yggdrasil/log/run                 | 1 -
 srcpkgs/znc/files/znc/log/run                             | 1 -
 124 files changed, 228 deletions(-)
 delete mode 100644 srcpkgs/Clightd/files/Clightd/log/run
 delete mode 100644 srcpkgs/Gokapi/files/gokapi/log/run
 delete mode 100644 srcpkgs/NetAuth-ldap/files/netauth-ldap/log/run
 delete mode 100644 srcpkgs/NetAuth/files/netauthd/log/run
 delete mode 100644 srcpkgs/PopCorn/files/popcorn/log/run
 delete mode 100644 srcpkgs/TerraState/files/terrastate/log/run
 delete mode 120000 srcpkgs/activityrelay/files/activityrelay/log/run
 delete mode 100644 srcpkgs/apache-kafka/files/apache-kafka-zookeeper/log/run
 delete mode 100644 srcpkgs/apache-kafka/files/apache-kafka/log/run
 delete mode 100644 srcpkgs/autofs/files/autofs/log/run
 delete mode 100755 srcpkgs/beanstalkd/files/beanstalkd/log/run
 delete mode 100644 srcpkgs/bind/files/named/log/run
 delete mode 120000 srcpkgs/bluez/files/bluetooth-meshd/log/run
 delete mode 120000 srcpkgs/bluez/files/bluetoothd/log/run
 delete mode 120000 srcpkgs/boinc/files/boinc/log/run
 delete mode 100755 srcpkgs/busybox/files/busybox-ntpd/log/run
 delete mode 120000 srcpkgs/caddy/files/caddy/log/run
 delete mode 100644 srcpkgs/ckb-next/files/ckb-next-daemon/log/run
 delete mode 120000 srcpkgs/conduit/files/conduit/log/run
 delete mode 100755 srcpkgs/coredns/files/coredns/log/run
 delete mode 120000 srcpkgs/coturn/files/coturnserver/log/run
 delete mode 100755 srcpkgs/cronie/files/cronie/log/run
 delete mode 100755 srcpkgs/dcron/files/dcron/log/run
 delete mode 120000 srcpkgs/dendrite/files/dendrite-monolith-server/log/run
 delete mode 120000 srcpkgs/dhcp/files/dhclient/log/run
 delete mode 120000 srcpkgs/dhcp/files/dhcpd4/log/run
 delete mode 120000 srcpkgs/dhcp/files/dhcpd6/log/run
 delete mode 100644 srcpkgs/dkimproxy/files/dkimproxy_in/log/run
 delete mode 100644 srcpkgs/dkimproxy/files/dkimproxy_out/log/run
 delete mode 100755 srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/log/run
 delete mode 100755 srcpkgs/dotool/files/dotoold/log/run
 delete mode 100644 srcpkgs/dq/files/dqcache/log/run
 delete mode 100755 srcpkgs/duiadns/files/duiadns/log/run
 delete mode 100755 srcpkgs/earlyoom/files/earlyoom/log/run
 delete mode 100755 srcpkgs/espeakup/files/espeakup/log/run
 delete mode 120000 srcpkgs/gerbera/files/gerbera/log/run
 delete mode 120000 srcpkgs/gitea/files/gitea/log/run
 delete mode 120000 srcpkgs/go-ipfs/files/ipfs/log/run
 delete mode 100755 srcpkgs/goatcounter/files/goatcounter/log/run
 delete mode 120000 srcpkgs/gotify-server/files/gotify-server/log/run
 delete mode 100755 srcpkgs/grafana/files/grafana/log/run
 delete mode 100755 srcpkgs/grub-btrfs/files/grub-btrfs/log/run
 delete mode 120000 srcpkgs/i2pd/files/i2pd/log/run
 delete mode 100644 srcpkgs/incron/files/incron/log/run
 delete mode 100755 srcpkgs/influxdb/files/influxdb/log/run
 delete mode 100755 srcpkgs/iwd/files/ead/log/run
 delete mode 100755 srcpkgs/iwd/files/iwd/log/run
 delete mode 100644 srcpkgs/libvirt/files/libvirt-generic/log/run
 delete mode 120000 srcpkgs/libvirt/files/libvirtd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtinterfaced/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtlockd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtlogd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtlxcd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtnetworkd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtnodedevd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtnwfilterd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtproxyd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtqemud/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtsecretd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtstoraged/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtvboxd/log/run
 delete mode 120000 srcpkgs/libvirt/files/virtxend/log/run
 delete mode 120000 srcpkgs/lldpd/files/lldpd/log/run
 delete mode 100755 srcpkgs/lsyncd/files/lsyncd/log/run
 delete mode 100644 srcpkgs/lxd/files/lxd/log/run
 delete mode 100755 srcpkgs/mariadb/files/mysqld/log/run
 delete mode 120000 srcpkgs/minidlna/files/minidlnad/log/run
 delete mode 120000 srcpkgs/miniflux/files/miniflux/log/run
 delete mode 100644 srcpkgs/minio/files/minio/log/run
 delete mode 120000 srcpkgs/moby/files/docker/log/run
 delete mode 100644 srcpkgs/monero/files/monerod/log/run
 delete mode 100644 srcpkgs/mumble/files/mumble-server/log/run
 delete mode 100755 srcpkgs/ndhc/files/ndhc/log/run
 delete mode 100755 srcpkgs/ndppd/files/ndppd/log/run
 delete mode 120000 srcpkgs/neard/files/neard/log/run
 delete mode 120000 srcpkgs/neard/files/seeld/log/run
 delete mode 100755 srcpkgs/nebula/files/nebula/log/run
 delete mode 120000 srcpkgs/net-snmp/files/snmpd/log/run
 delete mode 100755 srcpkgs/node_exporter/files/node_exporter/log/run
 delete mode 100644 srcpkgs/openntpd/files/openntpd/log/run
 delete mode 100644 srcpkgs/openrgb/files/openrgb/log/run
 delete mode 100644 srcpkgs/oragono/files/oragono/log/run
 delete mode 120000 srcpkgs/podman/files/podman/log/run
 delete mode 100755 srcpkgs/postgresql13/files/postgresql13/log/run
 delete mode 100755 srcpkgs/postgresql14/files/postgresql14/log/run
 delete mode 100644 srcpkgs/preload/files/preload/log/run
 delete mode 100755 srcpkgs/privoxy/files/privoxy/log/run
 delete mode 100755 srcpkgs/prometheus/files/prometheus/log/run
 delete mode 120000 srcpkgs/qrtr-ns/files/qrtr-ns/log/run
 delete mode 100755 srcpkgs/radicale/files/radicale/log/run
 delete mode 120000 srcpkgs/routinator/files/routinator/log/run
 delete mode 100644 srcpkgs/samba/files/ctdbd/log/run
 delete mode 100755 srcpkgs/samba/files/nmbd/log/run
 delete mode 100755 srcpkgs/samba/files/smbd/log/run
 delete mode 100755 srcpkgs/sklogw/files/sklogw/log/run
 delete mode 100644 srcpkgs/snapcast/files/snapclient/log/run
 delete mode 100644 srcpkgs/snapcast/files/snapserver/log/run
 delete mode 100755 srcpkgs/sndio/files/sndiod/log/run
 delete mode 100644 srcpkgs/socklog-ucspi/files/socklog-ucspi-tcp/log/run
 delete mode 100755 srcpkgs/soju/files/soju/log/run
 delete mode 100755 srcpkgs/spreed-webrtc/files/spreed-webrtc-server/log/run
 delete mode 100755 srcpkgs/sqmail/files/qmail-send/log/run
 delete mode 100755 srcpkgs/sqmail/files/qmail-smtpd/log/run
 delete mode 100755 srcpkgs/sqmail/files/qmail-smtpsd/log/run
 delete mode 100755 srcpkgs/sqmail/files/qmail-smtpsub/log/run
 delete mode 100644 srcpkgs/stubby/files/stubby/log/run
 delete mode 100755 srcpkgs/syncthing/files/discosrv/log/run
 delete mode 100755 srcpkgs/syncthing/files/relaysrv/log/run
 delete mode 100755 srcpkgs/tailscale/files/tailscaled/log/run
 delete mode 120000 srcpkgs/thermald/files/thermald/log/run
 delete mode 120000 srcpkgs/tqftpserv/files/tqftpserv/log/run
 delete mode 100644 srcpkgs/trousers/files/tcsd/log/run
 delete mode 100644 srcpkgs/umurmur/files/umurmurd/log/run
 delete mode 120000 srcpkgs/up_rewrite/files/up_rewrite/log/run
 delete mode 100644 srcpkgs/upmpdcli/files/upmpdcli/log/run
 delete mode 100755 srcpkgs/varnish/files/varnishd/log/run
 delete mode 120000 srcpkgs/vaultwarden/files/vaultwarden/log/run
 delete mode 120000 srcpkgs/vnstat/files/vnstatd/log/run
 delete mode 120000 srcpkgs/waydroid/files/waydroid-container/log/run
 delete mode 100644 srcpkgs/webhook/files/webhook/log/run
 delete mode 100644 srcpkgs/wireplumber/files/wireplumber/log/run
 delete mode 100644 srcpkgs/x2goserver/files/x2gocleansessions/log/run
 delete mode 120000 srcpkgs/yggdrasil/files/yggdrasil/log/run
 delete mode 120000 srcpkgs/znc/files/znc/log/run

diff --git a/srcpkgs/Clightd/files/Clightd/log/run b/srcpkgs/Clightd/files/Clightd/log/run
deleted file mode 100644
index bfcfbef2823b..000000000000
--- a/srcpkgs/Clightd/files/Clightd/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec /usr/bin/vlogger -t Clightd
diff --git a/srcpkgs/Gokapi/files/gokapi/log/run b/srcpkgs/Gokapi/files/gokapi/log/run
deleted file mode 100644
index cb759c1f80d7..000000000000
--- a/srcpkgs/Gokapi/files/gokapi/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -t gokapi -p daemon.info
diff --git a/srcpkgs/NetAuth-ldap/files/netauth-ldap/log/run b/srcpkgs/NetAuth-ldap/files/netauth-ldap/log/run
deleted file mode 100644
index 29dc909b4d8d..000000000000
--- a/srcpkgs/NetAuth-ldap/files/netauth-ldap/log/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-exec 2>&1
-exec vlogger -t netauth-ldap
diff --git a/srcpkgs/NetAuth/files/netauthd/log/run b/srcpkgs/NetAuth/files/netauthd/log/run
deleted file mode 100644
index c128c8e303a2..000000000000
--- a/srcpkgs/NetAuth/files/netauthd/log/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-exec 2>&1
-exec vlogger -t netauthd
diff --git a/srcpkgs/PopCorn/files/popcorn/log/run b/srcpkgs/PopCorn/files/popcorn/log/run
deleted file mode 100644
index 35f950bef681..000000000000
--- a/srcpkgs/PopCorn/files/popcorn/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t popcorn
diff --git a/srcpkgs/TerraState/files/terrastate/log/run b/srcpkgs/TerraState/files/terrastate/log/run
deleted file mode 100644
index 8ea6f0f74369..000000000000
--- a/srcpkgs/TerraState/files/terrastate/log/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-exec 2>&1
-exec vlogger -t terrastate
diff --git a/srcpkgs/activityrelay/files/activityrelay/log/run b/srcpkgs/activityrelay/files/activityrelay/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/activityrelay/files/activityrelay/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/apache-kafka/files/apache-kafka-zookeeper/log/run b/srcpkgs/apache-kafka/files/apache-kafka-zookeeper/log/run
deleted file mode 100644
index 043340b61258..000000000000
--- a/srcpkgs/apache-kafka/files/apache-kafka-zookeeper/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t apache-kafka-zookeeper -p 'daemon.info'
diff --git a/srcpkgs/apache-kafka/files/apache-kafka/log/run b/srcpkgs/apache-kafka/files/apache-kafka/log/run
deleted file mode 100644
index 94f6f1f9164e..000000000000
--- a/srcpkgs/apache-kafka/files/apache-kafka/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t apache-kafka -p 'daemon.info'
diff --git a/srcpkgs/autofs/files/autofs/log/run b/srcpkgs/autofs/files/autofs/log/run
deleted file mode 100644
index a2abfe61e846..000000000000
--- a/srcpkgs/autofs/files/autofs/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t autofs
diff --git a/srcpkgs/beanstalkd/files/beanstalkd/log/run b/srcpkgs/beanstalkd/files/beanstalkd/log/run
deleted file mode 100755
index 4eb11581262c..000000000000
--- a/srcpkgs/beanstalkd/files/beanstalkd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t beanstalkd -p daemon.info
diff --git a/srcpkgs/bind/files/named/log/run b/srcpkgs/bind/files/named/log/run
deleted file mode 100644
index 142fbd4af3f9..000000000000
--- a/srcpkgs/bind/files/named/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t named
diff --git a/srcpkgs/bluez/files/bluetooth-meshd/log/run b/srcpkgs/bluez/files/bluetooth-meshd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/bluez/files/bluetooth-meshd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/bluez/files/bluetoothd/log/run b/srcpkgs/bluez/files/bluetoothd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/bluez/files/bluetoothd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/boinc/files/boinc/log/run b/srcpkgs/boinc/files/boinc/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/boinc/files/boinc/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/busybox/files/busybox-ntpd/log/run b/srcpkgs/busybox/files/busybox-ntpd/log/run
deleted file mode 100755
index 077ea46d31d4..000000000000
--- a/srcpkgs/busybox/files/busybox-ntpd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t busybox-ntpd
diff --git a/srcpkgs/caddy/files/caddy/log/run b/srcpkgs/caddy/files/caddy/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/caddy/files/caddy/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/ckb-next/files/ckb-next-daemon/log/run b/srcpkgs/ckb-next/files/ckb-next-daemon/log/run
deleted file mode 100644
index 778760156ff0..000000000000
--- a/srcpkgs/ckb-next/files/ckb-next-daemon/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t ckb-next-daemon -p daemon.notice
diff --git a/srcpkgs/conduit/files/conduit/log/run b/srcpkgs/conduit/files/conduit/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/conduit/files/conduit/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/coredns/files/coredns/log/run b/srcpkgs/coredns/files/coredns/log/run
deleted file mode 100755
index f0680f7cfe3d..000000000000
--- a/srcpkgs/coredns/files/coredns/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-exec 2>&1
-exec vlogger -t coredns
diff --git a/srcpkgs/coturn/files/coturnserver/log/run b/srcpkgs/coturn/files/coturnserver/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/coturn/files/coturnserver/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/cronie/files/cronie/log/run b/srcpkgs/cronie/files/cronie/log/run
deleted file mode 100755
index 6ff79ce509cb..000000000000
--- a/srcpkgs/cronie/files/cronie/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p cron.notice
diff --git a/srcpkgs/dcron/files/dcron/log/run b/srcpkgs/dcron/files/dcron/log/run
deleted file mode 100755
index 481c04d62077..000000000000
--- a/srcpkgs/dcron/files/dcron/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p cron.notice
diff --git a/srcpkgs/dendrite/files/dendrite-monolith-server/log/run b/srcpkgs/dendrite/files/dendrite-monolith-server/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/dendrite/files/dendrite-monolith-server/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/dhcp/files/dhclient/log/run b/srcpkgs/dhcp/files/dhclient/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/dhcp/files/dhclient/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/dhcp/files/dhcpd4/log/run b/srcpkgs/dhcp/files/dhcpd4/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/dhcp/files/dhcpd4/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/dhcp/files/dhcpd6/log/run b/srcpkgs/dhcp/files/dhcpd6/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/dhcp/files/dhcpd6/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/dkimproxy/files/dkimproxy_in/log/run b/srcpkgs/dkimproxy/files/dkimproxy_in/log/run
deleted file mode 100644
index a4a63ef73234..000000000000
--- a/srcpkgs/dkimproxy/files/dkimproxy_in/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t dkimproxy_in -p mail.info
diff --git a/srcpkgs/dkimproxy/files/dkimproxy_out/log/run b/srcpkgs/dkimproxy/files/dkimproxy_out/log/run
deleted file mode 100644
index 45736fa75504..000000000000
--- a/srcpkgs/dkimproxy/files/dkimproxy_out/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t dkimproxy_out -p mail.info
diff --git a/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/log/run b/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/log/run
deleted file mode 100755
index d6ba4e8a0b48..000000000000
--- a/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec chpst -u dnscrypt_proxy:dnscrypt_proxy svlogd -t /var/log/dnscrypt-proxy
diff --git a/srcpkgs/dotool/files/dotoold/log/run b/srcpkgs/dotool/files/dotoold/log/run
deleted file mode 100755
index 762ba9e6cc26..000000000000
--- a/srcpkgs/dotool/files/dotoold/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t dotoold
diff --git a/srcpkgs/dq/files/dqcache/log/run b/srcpkgs/dq/files/dqcache/log/run
deleted file mode 100644
index ffcdcdb3736c..000000000000
--- a/srcpkgs/dq/files/dqcache/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec chpst -u _dqcache svlogd -t /var/log/dqcache
diff --git a/srcpkgs/duiadns/files/duiadns/log/run b/srcpkgs/duiadns/files/duiadns/log/run
deleted file mode 100755
index 94a82bf82dac..000000000000
--- a/srcpkgs/duiadns/files/duiadns/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec vlogger -t duiadns
diff --git a/srcpkgs/earlyoom/files/earlyoom/log/run b/srcpkgs/earlyoom/files/earlyoom/log/run
deleted file mode 100755
index 33d072e97ca1..000000000000
--- a/srcpkgs/earlyoom/files/earlyoom/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t earlyoom
diff --git a/srcpkgs/espeakup/files/espeakup/log/run b/srcpkgs/espeakup/files/espeakup/log/run
deleted file mode 100755
index 6d6f481c3794..000000000000
--- a/srcpkgs/espeakup/files/espeakup/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.debug -t espeakup
diff --git a/srcpkgs/gerbera/files/gerbera/log/run b/srcpkgs/gerbera/files/gerbera/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/gerbera/files/gerbera/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/gitea/files/gitea/log/run b/srcpkgs/gitea/files/gitea/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/gitea/files/gitea/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/log/run b/srcpkgs/go-ipfs/files/ipfs/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/go-ipfs/files/ipfs/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/goatcounter/files/goatcounter/log/run b/srcpkgs/goatcounter/files/goatcounter/log/run
deleted file mode 100755
index 0713d90a612e..000000000000
--- a/srcpkgs/goatcounter/files/goatcounter/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice -t goatcounter
diff --git a/srcpkgs/gotify-server/files/gotify-server/log/run b/srcpkgs/gotify-server/files/gotify-server/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/gotify-server/files/gotify-server/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/grafana/files/grafana/log/run b/srcpkgs/grafana/files/grafana/log/run
deleted file mode 100755
index 422fc14b90d7..000000000000
--- a/srcpkgs/grafana/files/grafana/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t grafana
diff --git a/srcpkgs/grub-btrfs/files/grub-btrfs/log/run b/srcpkgs/grub-btrfs/files/grub-btrfs/log/run
deleted file mode 100755
index 267659045cda..000000000000
--- a/srcpkgs/grub-btrfs/files/grub-btrfs/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t grub-btrfs
diff --git a/srcpkgs/i2pd/files/i2pd/log/run b/srcpkgs/i2pd/files/i2pd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/i2pd/files/i2pd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/incron/files/incron/log/run b/srcpkgs/incron/files/incron/log/run
deleted file mode 100644
index 481c04d62077..000000000000
--- a/srcpkgs/incron/files/incron/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p cron.notice
diff --git a/srcpkgs/influxdb/files/influxdb/log/run b/srcpkgs/influxdb/files/influxdb/log/run
deleted file mode 100755
index 642fc2657098..000000000000
--- a/srcpkgs/influxdb/files/influxdb/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t influxdb
diff --git a/srcpkgs/iwd/files/ead/log/run b/srcpkgs/iwd/files/ead/log/run
deleted file mode 100755
index 22cce06edfd9..000000000000
--- a/srcpkgs/iwd/files/ead/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t ead
diff --git a/srcpkgs/iwd/files/iwd/log/run b/srcpkgs/iwd/files/iwd/log/run
deleted file mode 100755
index 1e182b5a754e..000000000000
--- a/srcpkgs/iwd/files/iwd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t iwd
diff --git a/srcpkgs/libvirt/files/libvirt-generic/log/run b/srcpkgs/libvirt/files/libvirt-generic/log/run
deleted file mode 100644
index fe803f0a723c..000000000000
--- a/srcpkgs/libvirt/files/libvirt-generic/log/run
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-# Take daemon name from parent of the log subservice
-daemon="${PWD%/*}"
-daemon="${daemon##*/}"
-
-exec logger -t "$daemon" -p daemon.info
diff --git a/srcpkgs/libvirt/files/libvirtd/log/run b/srcpkgs/libvirt/files/libvirtd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/libvirtd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtinterfaced/log/run b/srcpkgs/libvirt/files/virtinterfaced/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtinterfaced/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtlockd/log/run b/srcpkgs/libvirt/files/virtlockd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtlockd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtlogd/log/run b/srcpkgs/libvirt/files/virtlogd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtlogd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtlxcd/log/run b/srcpkgs/libvirt/files/virtlxcd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtlxcd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtnetworkd/log/run b/srcpkgs/libvirt/files/virtnetworkd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtnetworkd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtnodedevd/log/run b/srcpkgs/libvirt/files/virtnodedevd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtnodedevd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtnwfilterd/log/run b/srcpkgs/libvirt/files/virtnwfilterd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtnwfilterd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtproxyd/log/run b/srcpkgs/libvirt/files/virtproxyd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtproxyd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtqemud/log/run b/srcpkgs/libvirt/files/virtqemud/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtqemud/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtsecretd/log/run b/srcpkgs/libvirt/files/virtsecretd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtsecretd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtstoraged/log/run b/srcpkgs/libvirt/files/virtstoraged/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtstoraged/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtvboxd/log/run b/srcpkgs/libvirt/files/virtvboxd/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtvboxd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/libvirt/files/virtxend/log/run b/srcpkgs/libvirt/files/virtxend/log/run
deleted file mode 120000
index 5c7df1c93a45..000000000000
--- a/srcpkgs/libvirt/files/virtxend/log/run
+++ /dev/null
@@ -1 +0,0 @@
-../../libvirt-generic/log/run
\ No newline at end of file
diff --git a/srcpkgs/lldpd/files/lldpd/log/run b/srcpkgs/lldpd/files/lldpd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/lldpd/files/lldpd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/lsyncd/files/lsyncd/log/run b/srcpkgs/lsyncd/files/lsyncd/log/run
deleted file mode 100755
index 114c954f1d99..000000000000
--- a/srcpkgs/lsyncd/files/lsyncd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t lsyncd -p 'daemon.info'
diff --git a/srcpkgs/lxd/files/lxd/log/run b/srcpkgs/lxd/files/lxd/log/run
deleted file mode 100644
index 817e6073ea07..000000000000
--- a/srcpkgs/lxd/files/lxd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t lxd
diff --git a/srcpkgs/mariadb/files/mysqld/log/run b/srcpkgs/mariadb/files/mysqld/log/run
deleted file mode 100755
index b36c4dafa403..000000000000
--- a/srcpkgs/mariadb/files/mysqld/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice
diff --git a/srcpkgs/minidlna/files/minidlnad/log/run b/srcpkgs/minidlna/files/minidlnad/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/minidlna/files/minidlnad/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/miniflux/files/miniflux/log/run b/srcpkgs/miniflux/files/miniflux/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/miniflux/files/miniflux/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/minio/files/minio/log/run b/srcpkgs/minio/files/minio/log/run
deleted file mode 100644
index b36c4dafa403..000000000000
--- a/srcpkgs/minio/files/minio/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice
diff --git a/srcpkgs/moby/files/docker/log/run b/srcpkgs/moby/files/docker/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/moby/files/docker/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/monero/files/monerod/log/run b/srcpkgs/monero/files/monerod/log/run
deleted file mode 100644
index afcb02949c66..000000000000
--- a/srcpkgs/monero/files/monerod/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -p daemon.notice -t monerod
diff --git a/srcpkgs/mumble/files/mumble-server/log/run b/srcpkgs/mumble/files/mumble-server/log/run
deleted file mode 100644
index 6b01a89f5be9..000000000000
--- a/srcpkgs/mumble/files/mumble-server/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -p daemon.notice -t murmur
diff --git a/srcpkgs/ndhc/files/ndhc/log/run b/srcpkgs/ndhc/files/ndhc/log/run
deleted file mode 100755
index 3dd63242fc51..000000000000
--- a/srcpkgs/ndhc/files/ndhc/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t ndhc
diff --git a/srcpkgs/ndppd/files/ndppd/log/run b/srcpkgs/ndppd/files/ndppd/log/run
deleted file mode 100755
index 6351a7cbc249..000000000000
--- a/srcpkgs/ndppd/files/ndppd/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -t ndppd
diff --git a/srcpkgs/neard/files/neard/log/run b/srcpkgs/neard/files/neard/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/neard/files/neard/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/neard/files/seeld/log/run b/srcpkgs/neard/files/seeld/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/neard/files/seeld/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/nebula/files/nebula/log/run b/srcpkgs/nebula/files/nebula/log/run
deleted file mode 100755
index 6a816023830d..000000000000
--- a/srcpkgs/nebula/files/nebula/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger --tag nebula --priority daemon.info
diff --git a/srcpkgs/net-snmp/files/snmpd/log/run b/srcpkgs/net-snmp/files/snmpd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/net-snmp/files/snmpd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/node_exporter/files/node_exporter/log/run b/srcpkgs/node_exporter/files/node_exporter/log/run
deleted file mode 100755
index 719aeb1c263e..000000000000
--- a/srcpkgs/node_exporter/files/node_exporter/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t node_exporter
diff --git a/srcpkgs/openntpd/files/openntpd/log/run b/srcpkgs/openntpd/files/openntpd/log/run
deleted file mode 100644
index 1401554c5c37..000000000000
--- a/srcpkgs/openntpd/files/openntpd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t openntpd -p daemon.notice
diff --git a/srcpkgs/openrgb/files/openrgb/log/run b/srcpkgs/openrgb/files/openrgb/log/run
deleted file mode 100644
index 12023ee0eca3..000000000000
--- a/srcpkgs/openrgb/files/openrgb/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t openrgb -p daemon.info
diff --git a/srcpkgs/oragono/files/oragono/log/run b/srcpkgs/oragono/files/oragono/log/run
deleted file mode 100644
index 0308e8a75127..000000000000
--- a/srcpkgs/oragono/files/oragono/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t oragono
diff --git a/srcpkgs/podman/files/podman/log/run b/srcpkgs/podman/files/podman/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/podman/files/podman/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/postgresql13/files/postgresql13/log/run b/srcpkgs/postgresql13/files/postgresql13/log/run
deleted file mode 100755
index 815d9c974079..000000000000
--- a/srcpkgs/postgresql13/files/postgresql13/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t postgres@VERSION@
diff --git a/srcpkgs/postgresql14/files/postgresql14/log/run b/srcpkgs/postgresql14/files/postgresql14/log/run
deleted file mode 100755
index 815d9c974079..000000000000
--- a/srcpkgs/postgresql14/files/postgresql14/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t postgres@VERSION@
diff --git a/srcpkgs/preload/files/preload/log/run b/srcpkgs/preload/files/preload/log/run
deleted file mode 100644
index 03f18ca93f33..000000000000
--- a/srcpkgs/preload/files/preload/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec svlogd -t /var/log/preload
diff --git a/srcpkgs/privoxy/files/privoxy/log/run b/srcpkgs/privoxy/files/privoxy/log/run
deleted file mode 100755
index fa590adf4e6a..000000000000
--- a/srcpkgs/privoxy/files/privoxy/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t privoxy
diff --git a/srcpkgs/prometheus/files/prometheus/log/run b/srcpkgs/prometheus/files/prometheus/log/run
deleted file mode 100755
index d93cf9f498ea..000000000000
--- a/srcpkgs/prometheus/files/prometheus/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t prometheus
diff --git a/srcpkgs/qrtr-ns/files/qrtr-ns/log/run b/srcpkgs/qrtr-ns/files/qrtr-ns/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/qrtr-ns/files/qrtr-ns/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/radicale/files/radicale/log/run b/srcpkgs/radicale/files/radicale/log/run
deleted file mode 100755
index 37284378a054..000000000000
--- a/srcpkgs/radicale/files/radicale/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec svlogd /var/log/radicale
diff --git a/srcpkgs/routinator/files/routinator/log/run b/srcpkgs/routinator/files/routinator/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/routinator/files/routinator/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/samba/files/ctdbd/log/run b/srcpkgs/samba/files/ctdbd/log/run
deleted file mode 100644
index 7b12895c7406..000000000000
--- a/srcpkgs/samba/files/ctdbd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice -t ctdbd
diff --git a/srcpkgs/samba/files/nmbd/log/run b/srcpkgs/samba/files/nmbd/log/run
deleted file mode 100755
index fb52de5c92a1..000000000000
--- a/srcpkgs/samba/files/nmbd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice -t nmbd
diff --git a/srcpkgs/samba/files/smbd/log/run b/srcpkgs/samba/files/smbd/log/run
deleted file mode 100755
index 3131489de9f3..000000000000
--- a/srcpkgs/samba/files/smbd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.notice -t smbd
diff --git a/srcpkgs/sklogw/files/sklogw/log/run b/srcpkgs/sklogw/files/sklogw/log/run
deleted file mode 100755
index 8d9259845801..000000000000
--- a/srcpkgs/sklogw/files/sklogw/log/run
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/sh
-
-#log script
-[ -d /var/log/sklogw ] || mkdir -p /var/log/sklogw
-exec svlogd -ttt /var/log/sklogw
diff --git a/srcpkgs/snapcast/files/snapclient/log/run b/srcpkgs/snapcast/files/snapclient/log/run
deleted file mode 100644
index 67d63360736a..000000000000
--- a/srcpkgs/snapcast/files/snapclient/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t snapclient
diff --git a/srcpkgs/snapcast/files/snapserver/log/run b/srcpkgs/snapcast/files/snapserver/log/run
deleted file mode 100644
index 13577cf7f054..000000000000
--- a/srcpkgs/snapcast/files/snapserver/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t snapserver
diff --git a/srcpkgs/sndio/files/sndiod/log/run b/srcpkgs/sndio/files/sndiod/log/run
deleted file mode 100755
index 4472c76afb44..000000000000
--- a/srcpkgs/sndio/files/sndiod/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t sndiod
diff --git a/srcpkgs/socklog-ucspi/files/socklog-ucspi-tcp/log/run b/srcpkgs/socklog-ucspi/files/socklog-ucspi-tcp/log/run
deleted file mode 100644
index acfadabea4d8..000000000000
--- a/srcpkgs/socklog-ucspi/files/socklog-ucspi-tcp/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec vlogger -p daemon -t socklog-ucspi-tcp
diff --git a/srcpkgs/soju/files/soju/log/run b/srcpkgs/soju/files/soju/log/run
deleted file mode 100755
index e3e1d1b70f91..000000000000
--- a/srcpkgs/soju/files/soju/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t soju -p daemon
diff --git a/srcpkgs/spreed-webrtc/files/spreed-webrtc-server/log/run b/srcpkgs/spreed-webrtc/files/spreed-webrtc-server/log/run
deleted file mode 100755
index c50c10aa0da9..000000000000
--- a/srcpkgs/spreed-webrtc/files/spreed-webrtc-server/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t spreed-webrtc-server -p daemon.notice
diff --git a/srcpkgs/sqmail/files/qmail-send/log/run b/srcpkgs/sqmail/files/qmail-send/log/run
deleted file mode 100755
index dfe9ca0c0e91..000000000000
--- a/srcpkgs/sqmail/files/qmail-send/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p mail.notice -t qmail-send
diff --git a/srcpkgs/sqmail/files/qmail-smtpd/log/run b/srcpkgs/sqmail/files/qmail-smtpd/log/run
deleted file mode 100755
index e8b65cb0b353..000000000000
--- a/srcpkgs/sqmail/files/qmail-smtpd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p mail.notice -t qmail-smtpd
diff --git a/srcpkgs/sqmail/files/qmail-smtpsd/log/run b/srcpkgs/sqmail/files/qmail-smtpsd/log/run
deleted file mode 100755
index 933100cc3f74..000000000000
--- a/srcpkgs/sqmail/files/qmail-smtpsd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p mail.notice -t qmail-smtpsd
diff --git a/srcpkgs/sqmail/files/qmail-smtpsub/log/run b/srcpkgs/sqmail/files/qmail-smtpsub/log/run
deleted file mode 100755
index c7918d4ee26a..000000000000
--- a/srcpkgs/sqmail/files/qmail-smtpsub/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p mail.notice -t qmail-smtpsub
diff --git a/srcpkgs/stubby/files/stubby/log/run b/srcpkgs/stubby/files/stubby/log/run
deleted file mode 100644
index 133f33a73b58..000000000000
--- a/srcpkgs/stubby/files/stubby/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t stubby -p daemon.notice
diff --git a/srcpkgs/syncthing/files/discosrv/log/run b/srcpkgs/syncthing/files/discosrv/log/run
deleted file mode 100755
index a667e5fd80c7..000000000000
--- a/srcpkgs/syncthing/files/discosrv/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec svlogd /var/log/discosrv
diff --git a/srcpkgs/syncthing/files/relaysrv/log/run b/srcpkgs/syncthing/files/relaysrv/log/run
deleted file mode 100755
index b1d5a28a7bf5..000000000000
--- a/srcpkgs/syncthing/files/relaysrv/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec svlogd /var/log/relaysrv
diff --git a/srcpkgs/tailscale/files/tailscaled/log/run b/srcpkgs/tailscale/files/tailscaled/log/run
deleted file mode 100755
index 28894bc17c6a..000000000000
--- a/srcpkgs/tailscale/files/tailscaled/log/run
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-exec 2>&1
-exec logger -t tailscaled -p daemon.info
diff --git a/srcpkgs/thermald/files/thermald/log/run b/srcpkgs/thermald/files/thermald/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/thermald/files/thermald/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/tqftpserv/files/tqftpserv/log/run b/srcpkgs/tqftpserv/files/tqftpserv/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/tqftpserv/files/tqftpserv/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/trousers/files/tcsd/log/run b/srcpkgs/trousers/files/tcsd/log/run
deleted file mode 100644
index f74f42b898ec..000000000000
--- a/srcpkgs/trousers/files/tcsd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t tcsd 
diff --git a/srcpkgs/umurmur/files/umurmurd/log/run b/srcpkgs/umurmur/files/umurmurd/log/run
deleted file mode 100644
index 4935a89f175e..000000000000
--- a/srcpkgs/umurmur/files/umurmurd/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -p daemon.notice -t umurmurd
diff --git a/srcpkgs/up_rewrite/files/up_rewrite/log/run b/srcpkgs/up_rewrite/files/up_rewrite/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/up_rewrite/files/up_rewrite/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/upmpdcli/files/upmpdcli/log/run b/srcpkgs/upmpdcli/files/upmpdcli/log/run
deleted file mode 100644
index 9d3d8b8d9878..000000000000
--- a/srcpkgs/upmpdcli/files/upmpdcli/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -t upmpdcli
diff --git a/srcpkgs/varnish/files/varnishd/log/run b/srcpkgs/varnish/files/varnishd/log/run
deleted file mode 100755
index 280d955ac11c..000000000000
--- a/srcpkgs/varnish/files/varnishd/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -t varnishd -p daemon.info
diff --git a/srcpkgs/vaultwarden/files/vaultwarden/log/run b/srcpkgs/vaultwarden/files/vaultwarden/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/vaultwarden/files/vaultwarden/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/vnstat/files/vnstatd/log/run b/srcpkgs/vnstat/files/vnstatd/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/vnstat/files/vnstatd/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/waydroid/files/waydroid-container/log/run b/srcpkgs/waydroid/files/waydroid-container/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/waydroid/files/waydroid-container/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/webhook/files/webhook/log/run b/srcpkgs/webhook/files/webhook/log/run
deleted file mode 100644
index 700bf023a873..000000000000
--- a/srcpkgs/webhook/files/webhook/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec vlogger -p daemon.info -t webhook
diff --git a/srcpkgs/wireplumber/files/wireplumber/log/run b/srcpkgs/wireplumber/files/wireplumber/log/run
deleted file mode 100644
index 4dd58318870e..000000000000
--- a/srcpkgs/wireplumber/files/wireplumber/log/run
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-exec logger -t wireplumber -p daemon.info
diff --git a/srcpkgs/x2goserver/files/x2gocleansessions/log/run b/srcpkgs/x2goserver/files/x2gocleansessions/log/run
deleted file mode 100644
index d5901d1fc65f..000000000000
--- a/srcpkgs/x2goserver/files/x2gocleansessions/log/run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec logger -p daemon.info -t x2gocleansessions
diff --git a/srcpkgs/yggdrasil/files/yggdrasil/log/run b/srcpkgs/yggdrasil/files/yggdrasil/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/yggdrasil/files/yggdrasil/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file
diff --git a/srcpkgs/znc/files/znc/log/run b/srcpkgs/znc/files/znc/log/run
deleted file mode 120000
index 3a5b4a586051..000000000000
--- a/srcpkgs/znc/files/znc/log/run
+++ /dev/null
@@ -1 +0,0 @@
-/usr/bin/vlogger
\ No newline at end of file

             reply	other threads:[~2023-02-02  8:21 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-02  8:21 classabbyamp [this message]
2023-02-02  8:27 ` [RFC] " classabbyamp
2023-02-02  8:36 ` [PR REVIEW] " paper42
2023-02-02 11:33 ` sgn
2023-02-07  7:26 ` [PR PATCH] [Updated] " classabbyamp
2023-02-07  7:34 ` classabbyamp
2023-02-07 11:08 ` ahesford
2023-02-07 16:07 ` classabbyamp
2023-02-10  1:13 ` [PR PATCH] [Updated] " classabbyamp
2023-02-10  2:36 ` [PR PATCH] [Merged]: " classabbyamp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-42026@inbox.vuxu.org \
    --to=classabbyamp@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).