summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDmitrijs Ledkovs <dmitrijs.ledkovs@canonical.com>2013-03-27 11:11:35 +0000
committerDmitrijs Ledkovs <dmitrijs.ledkovs@canonical.com>2013-03-27 11:11:35 +0000
commit941733a3ad7d158ea3926fd946bc3cf57a7ab97f (patch)
treee8f83e2ac3d9a96d74492188a7464720031dd366 /debian
parente50d97697743f2104c58077db4ef50aaa08b76b7 (diff)
Properly remove 65-mdadm.vol_id.rules, instead of trying to remove a never-existed 65_mdadm.vol_id.rules (note the 65- vs 65_).
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/mdadm.preinst3
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index f16a9757..45d58c5f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mdadm (3.2.5-5ubuntu1) UNRELEASED; urgency=low
+
+ * Properly remove 65-mdadm.vol_id.rules, instead of trying to remove a
+ never-existed 65_mdadm.vol_id.rules (note the 65- vs 65_).
+
+ -- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Wed, 27 Mar 2013 11:10:10 +0000
+
mdadm (3.2.5-5) unstable; urgency=low
* add (empty) restart and force-reload actions to mdadm-waitidle
diff --git a/debian/mdadm.preinst b/debian/mdadm.preinst
index 573bba09..dc6c48ef 100644
--- a/debian/mdadm.preinst
+++ b/debian/mdadm.preinst
@@ -43,7 +43,8 @@ case "$1" in
$MDADM -Esc /var/backups/mdadm-Es_v1.dump >> /var/backups/mdadm-Es_v1.dump || :
fi
- rm_conffile /etc/udev/rules.d/65_mdadm.vol_id.rules
+ # Used incorrect name s/_/-/, keep all throughout until after jessie is released.
+ rm_conffile /etc/udev/rules.d/65-mdadm.vol_id.rules
;;
*) :;;