From: ankry Date: Tue, 27 May 2003 21:55:02 +0000 (+0000) Subject: - formatting X-Git-Tag: deadbranch-1.6.2~17 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fpostfix.git;a=commitdiff_plain;h=cbbc084564902f7650b7603547f4b0395f06c959 - formatting Changed files: postfix.init -> 1.15 --- diff --git a/postfix.init b/postfix.init index b6cdca6..a54f7cd 100644 --- a/postfix.init +++ b/postfix.init @@ -37,7 +37,7 @@ case "$1" in msg_starting Postfix busy MSG="`/usr/sbin/postfix start 2>&1`" - if [ "$?" = "0" ] ; then + if [ $? -eq 0 ]; then ok touch /var/lock/subsys/postfix else @@ -93,7 +93,7 @@ case "$1" in extra_db=$(ls -1 /etc/mail/*.db 2> /dev/null | grep -v aliases.db | sed -e 's#.db$##') for base in $standard_db $extra_db; do I=$(basename "$base") - if [ -f /etc/mail/$I ] ; then + if [ -f /etc/mail/$I ]; then /usr/sbin/postmap hash:/etc/mail/$I < /etc/mail/$I fi done