]> git.pld-linux.org Git - packages/postfix.git/commitdiff
- formatting
authorankry <ankry@pld-linux.org>
Tue, 27 May 2003 21:55:02 +0000 (21:55 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    postfix.init -> 1.15

postfix.init

index b6cdca6728da998134f1869ff3e055d23ce07e38..a54f7cdfecb36474d6347297cd4d2f84b7e85ffc 100644 (file)
@@ -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
This page took 0.847931 seconds and 4 git commands to generate.