From 74359e51a7a2a0c451930d10ad64bfc23c2c4c82 Mon Sep 17 00:00:00 2001 From: Darik Horn Date: Mon, 28 Nov 2011 00:07:30 -0600 Subject: [PATCH] Fix the hourly-daily transposition in the Makefile. The hourly cron job was installed to cron.daily, and the daily cron job was installed to cron.hourly, which caused incorrect scheduling. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ba36795..8ad02b3 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ install: install -d $(DESTDIR)$(PREFIX)/etc/cron.weekly install -d $(DESTDIR)$(PREFIX)/etc/cron.monthly install etc/zfs-auto-snapshot.cron.frequent $(DESTDIR)$(PREFIX)/etc/cron.d/zfs-auto-snapshot - install etc/zfs-auto-snapshot.cron.hourly $(DESTDIR)$(PREFIX)/etc/cron.daily/zfs-auto-snapshot - install etc/zfs-auto-snapshot.cron.daily $(DESTDIR)$(PREFIX)/etc/cron.hourly/zfs-auto-snapshot + install etc/zfs-auto-snapshot.cron.hourly $(DESTDIR)$(PREFIX)/etc/cron.hourly/zfs-auto-snapshot + install etc/zfs-auto-snapshot.cron.daily $(DESTDIR)$(PREFIX)/etc/cron.daily/zfs-auto-snapshot install etc/zfs-auto-snapshot.cron.weekly $(DESTDIR)$(PREFIX)/etc/cron.weekly/zfs-auto-snapshot install etc/zfs-auto-snapshot.cron.monthly $(DESTDIR)$(PREFIX)/etc/cron.monthly/zfs-auto-snapshot install -d $(DESTDIR)$(PREFIX)/sbin