X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/3a4a4af9f18efe59713deaec8a455cc825470865..24b8c863b154e1bee674597ffcd818d4d959c9a1:/debian/postinst

diff --git a/debian/postinst b/debian/postinst
index a1de8b8..5b29801 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -7,10 +7,13 @@ if [ "$1" = "configure" ]; then
     # Add the onak user
     adduser --system --home /var/lib/onak --no-create-home --disabled-login onak
 
-    # 
-    # If there's no onak database, create it by adding my key.
     #
-    if [ ! -e /var/lib/onak/num_keydb ]; then
+    # If we're using a default config and there's no onak database, create it
+    # by adding my key.
+    #
+    if grep -q "^db_dir /var/lib/onak" /etc/onak.conf &&
+            grep -q "^db_backend db4" /etc/onak.conf &&
+            [ ! -e /var/lib/onak/num_keydb ]; then
         zcat /usr/share/doc/onak/noodles.key | onak -b add
     fi
 
@@ -45,3 +48,5 @@ if [ "$1" = "configure" ]; then
     fi
 
 fi
+
+#DEBHELPER#