Thanks for the bugfix. There is just one small typo in the change that still
causes an error on boot about a "unary operator expected". The following patch
fixes it:
--- postfix.orig 2005-02-27 15:19:38.000000000 -0800
+++ postfix 2005-02-27 15:15:49.000000000 -0800
@@ -14,7 +14,7 @@
if [ -f /var/spool/postfix/pid/master.pid ]; then
pid=$(sed 's/ //g' /var/spool/postfix/pid/master.pid)
exe=$(ls -l /proc/$pid/exe 2>/dev/null | sed 's/.* //')
- if [ $exe = "/usr/lib/postfix/master" ]; then
+ if [ "$exe" = "/usr/lib/postfix/master" ]; then
/usr/sbin/sendmail -q
fi
fi
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]