--- 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.