Browse Source

fixed config check output redirection

master
Christoph Schug 22 years ago committed by Ralf S. Engelschall
parent
commit
6ab30fddbd
  1. 2
      postfix/postfix.spec
  2. 4
      postfix/rc.postfix

2
postfix/postfix.spec

@ -39,7 +39,7 @@ Distribution: OpenPKG [BASE]
Group: Mail
License: IPL
Version: %{V_postfix}
Release: 20031124
Release: 20031128
# package options
%option with_fsl yes

4
postfix/rc.postfix

@ -18,8 +18,8 @@
%status -u @l_susr@ -o
postfix_usable="no"
postfix_active="no"
@l_prefix@/sbin/postfix check 2>&1 >/dev/null && postfix_usable="yes"
@l_prefix@/libexec/postfix/master -t 2>&1 >/dev/null || postfix_active="yes"
@l_prefix@/sbin/postfix check >/dev/null 2>&1 && postfix_usable="yes"
@l_prefix@/libexec/postfix/master -t >/dev/null 2>&1 || postfix_active="yes"
echo "postfix_enable=\"$postfix_enable\""
echo "postfix_usable=\"$postfix_usable\""
echo "postfix_active=\"$postfix_active\""

Loading…
Cancel
Save