From 498c074dea4692cda3866b3d68516aba4165353a Mon Sep 17 00:00:00 2001 From: Bruce Leidl Date: Thu, 21 Jan 2016 23:59:04 +0000 Subject: [PATCH] Don't bail if dbus cannot be restarted --- debian/fw-daemon.postinst | 2 +- debian/fw-daemon.postrm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/fw-daemon.postinst b/debian/fw-daemon.postinst index f7fa773..d74b798 100644 --- a/debian/fw-daemon.postinst +++ b/debian/fw-daemon.postinst @@ -4,7 +4,7 @@ set -e case $1 in configure) - systemctl reload dbus.service + systemctl reload dbus.service || true ;; abort-upgrade|abort-remove|abort-deconfigure) ;; diff --git a/debian/fw-daemon.postrm b/debian/fw-daemon.postrm index 2dd4a06..f9dde1b 100644 --- a/debian/fw-daemon.postrm +++ b/debian/fw-daemon.postrm @@ -3,7 +3,7 @@ set -e if [ "$1" = "remove" ]; then - systemctl reload dbus.service + systemctl reload dbus.service || true fi #DEBHELPER#