about summary refs log tree commit diff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/network-manager-config-connectivity-debian.postinst2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index b8cadcd9..8ab3880c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+network-manager (1.10.2-5) UNRELEASED; urgency=medium
+
+  * Do not fail installation of network-manager-config-connectivity-* if
+    network-manager fails to reload (see LP: #1742403)
+
+ -- Laurent Bigonville <bigon@debian.org>  Thu, 25 Jan 2018 10:32:31 +0100
+
 network-manager (1.10.2-4) unstable; urgency=medium
 
   * Set Rules-Requires-Root to no
diff --git a/debian/network-manager-config-connectivity-debian.postinst b/debian/network-manager-config-connectivity-debian.postinst
index e8698667..eb087aa4 100644
--- a/debian/network-manager-config-connectivity-debian.postinst
+++ b/debian/network-manager-config-connectivity-debian.postinst
@@ -3,7 +3,7 @@
 set -e
 
 if [ "$1" = configure ]; then
-    invoke-rc.d network-manager force-reload
+    invoke-rc.d network-manager force-reload || true
 fi
 
 #DEBHELPER#