From 24acfd5d323c13d2fab8e387ac798c4fcfe427c5 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 19 Apr 2010 21:33:59 +1200 Subject: [PATCH] Attempt to run the database update on upgrade, but ignore failure. --- debian/davical.postinst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/davical.postinst b/debian/davical.postinst index e0ab0892..0f2d84ea 100644 --- a/debian/davical.postinst +++ b/debian/davical.postinst @@ -20,6 +20,9 @@ fi case $1 in configure) + # Attempt to run the database upgrade script with default + # settings, but ignore any possible failure. + /usr/share/davical/dba/update-davical-database || true ;; esac