From c8d920f3f5c89f1af2127e7e70f2f700403c0b9a Mon Sep 17 00:00:00 2001 From: Sebastian Schlicht Date: Wed, 28 Nov 2018 13:53:32 +0100 Subject: [PATCH] Makefile: install/uninstall systemd resume service --- makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 3741c14..e00581a 100644 --- a/makefile +++ b/makefile @@ -70,7 +70,8 @@ setup: @cp udev/$(PROGN).rules $(DESTDIR)/etc/udev/rules.d @test -s /usr/bin/systemd-run && \ install -m 755 -d $(DESTDIR)$(SYSTEMDDIR)/system && \ - cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system + cp systemd/$(PROGN)-reboot.service $(DESTDIR)$(SYSTEMDDIR)/system && \ + cp systemd/$(PROGN)-resume.service $(DESTDIR)$(SYSTEMDDIR)/system install-lib: lib @install -m 755 -d $(libdir) @@ -90,7 +91,8 @@ install: setup @$(PROGN) -p /etc/$(PROGN)/profile @test -s /usr/bin/systemd-run && \ systemctl daemon-reload && \ - systemctl enable $(PROGN)-reboot + systemctl enable $(PROGN)-reboot && \ + systemctl enable $(PROGN)-resume uninstall-lib: @rm -f $(libdir)/lib$(PROGN).so* @@ -102,6 +104,8 @@ uninstall: @test -s /usr/bin/systemd-run && \ systemctl disable $(PROGN)-reboot && \ rm $(SYSTEMDDIR)/system/$(PROGN)-reboot.service && \ + systemctl disable $(PROGN)-resume && \ + rm $(SYSTEMDDIR)/system/$(PROGN)-resume.service && \ systemctl daemon-reload && \ rm -R /etc/$(PROGN)