make lintian a bit more happy; simplify Makefile
authorMatthias Förste <foerste@schlittermann.de>
Tue, 12 Aug 2014 15:23:13 +0200
changeset 4 25b7cc70694c
parent 3 79c069304ff1
child 5 0f5276b4ee4b
make lintian a bit more happy; simplify Makefile
Makefile
debian/control
--- 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)
--- 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.