Skip to content

Commit 74359e5

Browse files
committed
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.
1 parent afdae86 commit 74359e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ install:
77
install -d $(DESTDIR)$(PREFIX)/etc/cron.weekly
88
install -d $(DESTDIR)$(PREFIX)/etc/cron.monthly
99
install etc/zfs-auto-snapshot.cron.frequent $(DESTDIR)$(PREFIX)/etc/cron.d/zfs-auto-snapshot
10-
install etc/zfs-auto-snapshot.cron.hourly $(DESTDIR)$(PREFIX)/etc/cron.daily/zfs-auto-snapshot
11-
install etc/zfs-auto-snapshot.cron.daily $(DESTDIR)$(PREFIX)/etc/cron.hourly/zfs-auto-snapshot
10+
install etc/zfs-auto-snapshot.cron.hourly $(DESTDIR)$(PREFIX)/etc/cron.hourly/zfs-auto-snapshot
11+
install etc/zfs-auto-snapshot.cron.daily $(DESTDIR)$(PREFIX)/etc/cron.daily/zfs-auto-snapshot
1212
install etc/zfs-auto-snapshot.cron.weekly $(DESTDIR)$(PREFIX)/etc/cron.weekly/zfs-auto-snapshot
1313
install etc/zfs-auto-snapshot.cron.monthly $(DESTDIR)$(PREFIX)/etc/cron.monthly/zfs-auto-snapshot
1414
install -d $(DESTDIR)$(PREFIX)/sbin

0 commit comments

Comments
 (0)