From 0d88b1e6605190a123967738ad18923d43119b1b Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Tue, 3 Oct 2017 11:02:14 -0300 Subject: [PATCH] make timers desactivable via systemctl --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2b0e16d..76a928b 100644 --- a/Makefile +++ b/Makefile @@ -48,8 +48,8 @@ install: install_pamac-tray-appindicator install -Dm644 data/systemd/pamac-mirrorlist.service $(libdir)/systemd/system/pamac-mirrorlist.service install -Dm644 data/systemd/pamac-mirrorlist.timer $(libdir)/systemd/system/pamac-mirrorlist.timer mkdir -p $(libdir)/systemd/system/multi-user.target.wants - ln -srf $(libdir)/systemd/system/pamac-cleancache.timer $(libdir)/systemd/system/multi-user.target.wants - ln -srf $(libdir)/systemd/system/pamac-mirrorlist.timer $(libdir)/systemd/system/multi-user.target.wants + ln -srf $(libdir)/systemd/system/pamac-cleancache.timer $(sysconfdir)/systemd/system/multi-user.target.wants + ln -srf $(libdir)/systemd/system/pamac-mirrorlist.timer $(sysconfdir)/systemd/system/multi-user.target.wants install -Dm644 data/polkit/org.manjaro.pamac.policy $(datadir)/polkit-1/actions/org.manjaro.pamac.policy install -Dm644 data/mime/x-alpm-package.xml $(datadir)/mime/packages/x-alpm-package.xml @@ -84,9 +84,9 @@ uninstall: rm -f $(datadir)/dbus-1/system-services/org.manjaro.pamac.system.service rm -f $(libdir)/systemd/system/pamac-system.service rm -f $(libdir)/systemd/system/pamac-cleancache.service - rm -f $(libdir)/systemd/system/pamac-cleancache.timer + rm -f $(sysconfdir)/systemd/system/pamac-cleancache.timer rm -f $(libdir)/systemd/system/pamac-mirrorlist.service - rm -f $(libdir)/systemd/system/pamac-mirrorlist.timer + rm -f $(sysconfdir)/systemd/system/pamac-mirrorlist.timer rm -f $(libdir)/systemd/system/multi-user.target.wants/pamac-cleancache.timer rm -f $(datadir)/polkit-1/actions/org.manjaro.pamac.policy rm -f $(datadir)/mime/packages/x-alpm-package.xml