Browse Source

* debian/rules:
- Stop restarting aoetools on upgrades. This is the wrong thing, as we
don't have a daemon or anything like that, because everything happends
inside the kernel once the devices are mounted. We caused unnecesary
grief with it (closes: #568554).

David Martínez Moreno 10 years ago
parent
commit
836e7b5609
2 changed files with 5 additions and 1 deletions
  1. 4 0
      debian/changelog
  2. 1 1
      debian/rules

+ 4 - 0
debian/changelog

@@ -19,6 +19,10 @@ aoetools (36-1) UNRELEASED; urgency=low
     - Actually migrate it to the compact version, overriding dh_installinit.
     - Actually migrate it to the compact version, overriding dh_installinit.
     - Added an override to install the upstream changelog.
     - Added an override to install the upstream changelog.
     - Added override to dh_auto_install, because we need everything in /sbin.
     - Added override to dh_auto_install, because we need everything in /sbin.
+    - Stop restarting aoetools on upgrades.  This is the wrong thing, as we
+      don't have a daemon or anything like that, because everything happends
+      inside the kernel once the devices are mounted.  We caused unnecesary
+      grief with it (closes: #568554).
   * debian/watch: Added.
   * debian/watch: Added.
   * debian/patches:
   * debian/patches:
     - 02_no_hyphen_in_manpages: Refreshed, and fixed a typo in aoeping.8.
     - 02_no_hyphen_in_manpages: Refreshed, and fixed a typo in aoeping.8.

+ 1 - 1
debian/rules

@@ -15,4 +15,4 @@ override_dh_installchangelogs:
 	dh_installchangelogs NEWS
 	dh_installchangelogs NEWS
 
 
 override_dh_installinit:
 override_dh_installinit:
-	dh_installinit -u"start 41 S . start 34 0 6 ."
+	dh_installinit --no-restart-on-upgrade -u"start 41 S . start 34 0 6 ."