mirror of
https://github.com/zfsonlinux/zfs-auto-snapshot.git
synced 2024-11-22 08:03:54 +01:00
d5cb31aaae
Resolve this lintian error: E: zfs-auto-snapshot: bad-permissions-for-etc-cron.d-script etc/cron.d/zfs-auto-snapshot 0755 != 0644 W: zfs-auto-snapshot: executable-not-elf-or-script etc/cron.d/zfs-auto-snapshot This should also resolve a related failure on Arch Linux. Closes: zfsonlinux/zfs-auto-snapshot#4 Thanks: @bitloggerig Thanks: @scottj97
20 lines
929 B
Makefile
20 lines
929 B
Makefile
PREFIX := /usr/local
|
|
|
|
all:
|
|
|
|
install:
|
|
install -d $(DESTDIR)/etc/cron.d
|
|
install -d $(DESTDIR)/etc/cron.daily
|
|
install -d $(DESTDIR)/etc/cron.hourly
|
|
install -d $(DESTDIR)/etc/cron.weekly
|
|
install -d $(DESTDIR)/etc/cron.monthly
|
|
install -m 0644 etc/zfs-auto-snapshot.cron.frequent $(DESTDIR)/etc/cron.d/zfs-auto-snapshot
|
|
install etc/zfs-auto-snapshot.cron.hourly $(DESTDIR)/etc/cron.hourly/zfs-auto-snapshot
|
|
install etc/zfs-auto-snapshot.cron.daily $(DESTDIR)/etc/cron.daily/zfs-auto-snapshot
|
|
install etc/zfs-auto-snapshot.cron.weekly $(DESTDIR)/etc/cron.weekly/zfs-auto-snapshot
|
|
install etc/zfs-auto-snapshot.cron.monthly $(DESTDIR)/etc/cron.monthly/zfs-auto-snapshot
|
|
install -d $(DESTDIR)$(PREFIX)/share/man/man8
|
|
install src/zfs-auto-snapshot.8 $(DESTDIR)$(PREFIX)/share/man/man8/zfs-auto-snapshot.8
|
|
install -d $(DESTDIR)$(PREFIX)/sbin
|
|
install src/zfs-auto-snapshot.sh $(DESTDIR)$(PREFIX)/sbin/zfs-auto-snapshot
|