From 321ad5b838fb33403858575bc616da8f64634f8b Mon Sep 17 00:00:00 2001 From: maniacikarus Date: Sat, 9 May 2009 22:39:03 +0200 Subject: [PATCH] fixed postfix --- src/initscripts/init.d/postfix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/init.d/postfix b/src/initscripts/init.d/postfix index 2620a4eb3..f7fc2dd73 100644 --- a/src/initscripts/init.d/postfix +++ b/src/initscripts/init.d/postfix @@ -49,7 +49,7 @@ case "$1" in status) PID=`pidof /usr/lib/postfix/master` MPID=`cat /var/spool/postfix/pid/master.pid` - if [ $MPID = $PID ]; then + if [ ${MPID} = ${PID} ]; then echo -e "${INFO}postfix is running with Process"\ "ID(s) ${MPID}.${NORMAL}" fi