# HG changeset patch # User Matthias Förste # Date 1407849793 -7200 # Node ID 25b7cc70694c4828ef4391ec7d9a7b510587a117 # Parent 79c069304ff1290952e3e76d952869447220a3c6 make lintian a bit more happy; simplify Makefile diff -r 79c069304ff1 -r 25b7cc70694c Makefile --- a/Makefile Tue Aug 12 15:00:02 2014 +0200 +++ b/Makefile Tue Aug 12 15:23:13 2014 +0200 @@ -13,10 +13,10 @@ all: $(SCRIPT) $(NAME).cron install: all - install -d -m 0755 $(DESTDIR)$(sbindir) - install -m 0755 $(SCRIPT) $(DESTDIR)$(sbindir)/ - install -d -m 0755 $(DESTDIR)$(crondir) - install -m 0755 $(NAME).cron $(DESTDIR)$(crondir)/$(NAME) + install -d $(DESTDIR)$(sbindir) + install $(SCRIPT) $(DESTDIR)$(sbindir)/ + install -d $(DESTDIR)$(crondir) + install -m 0644 $(NAME).cron $(DESTDIR)$(crondir)/$(NAME) clean: -rm -f $(NAME) diff -r 79c069304ff1 -r 25b7cc70694c debian/control --- a/debian/control Tue Aug 12 15:00:02 2014 +0200 +++ b/debian/control Tue Aug 12 15:23:13 2014 +0200 @@ -11,3 +11,6 @@ Architecture: all Depends: drbd-utils, ${misc:Depends} Description: run drbd verification periodically + This package provides a script which runs a verification on all drbd devices + of a system using the dynamic resync speed controller and a cron job which + runs this script periodically.