diff options
author | Christian Hesse <mail@eworm.de> | 2022-09-26 13:27:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-01-03 00:15:04 +0100 |
commit | ea7d79d59dda2652753c1a3b667f5351fb0b61cd (patch) | |
tree | 55b56ae5834fe76cf0c0950ed3c1ac4bbe366621 | |
parent | 75cd3e974c3b43d38aa0bb9aea3254b7c0054a23 (diff) | |
download | pacredir-try-restart.tar.gz pacredir-try-restart.tar.zst |
add libalpm hook to restart on upgradetry-restart
There's no final solution for the server error limit issue 🥴 - so not sure
if adopting new (possible) solutions is required...
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | libalpm/80-pacredir.hook | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -66,6 +66,7 @@ install-bin: pacredir avahi/pacserve.service $(INSTALL) -D -m0644 initcpio/install/pacredir $(DESTDIR)$(PREFIX)/lib/initcpio/install/pacredir $(INSTALL) -D -m0644 dhcpcd/80-pacredir $(DESTDIR)$(PREFIX)/lib/dhcpcd/dhcpcd-hooks/80-pacredir $(INSTALL) -D -m0755 networkmanager/80-pacredir $(DESTDIR)$(PREFIX)/lib/NetworkManager/dispatcher.d/80-pacredir + $(INSTALL) -D -m0644 libalpm/80-pacredir.hook $(DESTDIR)$(PREFIX)/lib/share/libalpm/hooks/80-pacredir.hook install-doc: $(HTML) $(INSTALL) -d -m0755 $(DESTDIR)$(PREFIX)/share/doc/pacredir/ diff --git a/libalpm/80-pacredir.hook b/libalpm/80-pacredir.hook new file mode 100644 index 0000000..14eb4f3 --- /dev/null +++ b/libalpm/80-pacredir.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Upgrade +Type = Package +Target = pacredir + +[Action] +Description = Restarting pacredir... +When = PostTransaction +Exec = /usr/bin/systemctl try-restart pacredir.service |