summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/mongodb-enterprise-server.postinst5
-rw-r--r--debian/mongodb-enterprise-unstable-server.postinst5
-rw-r--r--debian/mongodb-org-server.postinst5
-rw-r--r--debian/mongodb-org-unstable-server.postinst5
4 files changed, 12 insertions, 8 deletions
diff --git a/debian/mongodb-enterprise-server.postinst b/debian/mongodb-enterprise-server.postinst
index a09e41f8edf..9a5fdff903b 100644
--- a/debian/mongodb-enterprise-server.postinst
+++ b/debian/mongodb-enterprise-server.postinst
@@ -39,9 +39,10 @@ case "$1" in
chown mongodb:mongodb /var/log/mongodb
fi
- # Check for changes to the service file
+ # Check for changes to the service file, but ignore errors when
+ # systemd is not running.
if $(command systemctl --help >/dev/null); then
- systemctl daemon-reload
+ systemctl daemon-reload || true
fi
;;
diff --git a/debian/mongodb-enterprise-unstable-server.postinst b/debian/mongodb-enterprise-unstable-server.postinst
index a09e41f8edf..9a5fdff903b 100644
--- a/debian/mongodb-enterprise-unstable-server.postinst
+++ b/debian/mongodb-enterprise-unstable-server.postinst
@@ -39,9 +39,10 @@ case "$1" in
chown mongodb:mongodb /var/log/mongodb
fi
- # Check for changes to the service file
+ # Check for changes to the service file, but ignore errors when
+ # systemd is not running.
if $(command systemctl --help >/dev/null); then
- systemctl daemon-reload
+ systemctl daemon-reload || true
fi
;;
diff --git a/debian/mongodb-org-server.postinst b/debian/mongodb-org-server.postinst
index a09e41f8edf..9a5fdff903b 100644
--- a/debian/mongodb-org-server.postinst
+++ b/debian/mongodb-org-server.postinst
@@ -39,9 +39,10 @@ case "$1" in
chown mongodb:mongodb /var/log/mongodb
fi
- # Check for changes to the service file
+ # Check for changes to the service file, but ignore errors when
+ # systemd is not running.
if $(command systemctl --help >/dev/null); then
- systemctl daemon-reload
+ systemctl daemon-reload || true
fi
;;
diff --git a/debian/mongodb-org-unstable-server.postinst b/debian/mongodb-org-unstable-server.postinst
index a09e41f8edf..9a5fdff903b 100644
--- a/debian/mongodb-org-unstable-server.postinst
+++ b/debian/mongodb-org-unstable-server.postinst
@@ -39,9 +39,10 @@ case "$1" in
chown mongodb:mongodb /var/log/mongodb
fi
- # Check for changes to the service file
+ # Check for changes to the service file, but ignore errors when
+ # systemd is not running.
if $(command systemctl --help >/dev/null); then
- systemctl daemon-reload
+ systemctl daemon-reload || true
fi
;;