From 3ab844af266207deaed01d374508056d22228930 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 Sep 2021 06:41:21 +0200 Subject: Adding knot-reset-zone cron. Signed-off-by: Daniel Baumann --- knot/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'knot/Makefile') diff --git a/knot/Makefile b/knot/Makefile index 3a2e4b9..9b3ef3b 100644 --- a/knot/Makefile +++ b/knot/Makefile @@ -61,6 +61,9 @@ test: build: install: build + mkdir -p $(DESTDIR)/etc/cron.d + cp -r share/cron/* $(DESTDIR)/etc/cron.d + mkdir -p $(DESTDIR)/usr/bin cp -r bin/* $(DESTDIR)/usr/bin @@ -71,6 +74,12 @@ uninstall: done rmdir --ignore-fail-on-non-empty --parents $(DESTDIR)/usr/bin || true + for FILE in share/cron/*; \ + do \ + rm -f $(DESTDIR)/etc/cron.d/$$(basename $${FILE}); \ + done + rmdir --ignore-fail-on-non-empty --parents $(DESTDIR)/etc/cron.d || true + rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true clean: -- cgit v1.2.3