X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=debian%2Fpostinst;h=c954775252a475f06c4914ca6583161b68330385;hb=edad848cbda141628e4318425c1b1be0953aca96;hp=a1de8b8d6b61568fcd8240a519f62c11ae3563b2;hpb=3a4a4af9f18efe59713deaec8a455cc825470865;p=onak.git diff --git a/debian/postinst b/debian/postinst index a1de8b8..c954775 100644 --- a/debian/postinst +++ b/debian/postinst @@ -7,10 +7,14 @@ 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 -a \ + -e /usr/share/doc/onak/noodles.key.gz ]; then zcat /usr/share/doc/onak/noodles.key | onak -b add fi @@ -45,3 +49,5 @@ if [ "$1" = "configure" ]; then fi fi + +#DEBHELPER#