]> the.earth.li Git - onak.git/blobdiff - debian/postinst
Make sure we own /var/spool/onak (Debian packaging)
[onak.git] / debian / postinst
index 1252508da87606529c3608814fd66c2f280d6494..b5215285c87acf832970271cbeb8d9d59e36d629 100644 (file)
@@ -7,8 +7,16 @@ if [ "$1" = "configure" ]; then
     # Add the onak user
     adduser --system --home /var/lib/onak --no-create-home --disabled-login onak
 
-    # Take ownership of the database directory
+    # 
+    # If there's no onak database, create it by adding my key.
+    #
+    if [ ! -e /var/lib/onak/num_keydb ]; then
+        zcat /usr/share/doc/onak/noodles.key | onak -b add
+    fi
+
+    # Take ownership of the database and spool directory
     chown -R onak /var/lib/onak
+    chown -R onak /var/spool/onak
 
     # Create our logfile
     touch /var/log/onak.log