izmjene u postinstu
[dovecot-cn.git] / debian / postinst
index 0d75081..1caedc8 100755 (executable)
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 [ "$1" = "configure" ] || exit 0
 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx
@@ -49,7 +51,7 @@ if ! grep -q ^ssl_cert /etc/dovecot/conf.d/10-ssl.conf \
 
   if [ ! -f /etc/dovecot/dovecot.pem -a ! -f /etc/dovecot/private/dovecot.pem ]; then
     echo "CN: Generating certificate and key..."
-    /usr/share/dovecot-cn/mkcert.sh 2>&1 > /dev/null
+    /usr/share/dovecot-cn/mkcert.sh || true
   fi
 
   cp_check_and_sed '#ssl_cert = </etc/dovecot/dovecot.pem' \
@@ -68,11 +70,7 @@ cp_check_and_sed '#ssl_protocols =' \
                 /etc/dovecot/conf.d/10-ssl.conf || true
 
 # restart 
-if [ -x /usr/sbin/invoke-rc.d ]; then
-  [ -x /etc/init.d/dovecot ] && invoke-rc.d dovecot restart
-else
-  [ -x /etc/init.d/dovecot ] && /etc/init.d/dovecot restart
-fi
+service dovecot restart || true
 
 #DEBHELPER#