| Summary: | Initscript of postfix does not quote NETWORKING | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 6 | Reporter: | Peter Bieringer <pb> |
| Component: | postfix | Assignee: | Jaroslav Škarvada <jskarvad> |
| Status: | CLOSED DUPLICATE | QA Contact: | qe-baseos-daemons |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.4 | CC: | pknirsch |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-12-01 17:02:09 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
Thanks for the patch. *** This bug has been marked as a duplicate of bug 655455 *** |
Description of problem: (re)start of postfix results in: # service postfix restart Shutting down postfix: [ OK ] /etc/init.d/postfix: line 73: [: =: unary operator expected Starting postfix: [ OK ] Version-Release number of selected component (if applicable): postfix-2.6.6-2.2.el6_1.x86_64 How reproducible: always Steps to Reproduce: 1. remove NETWORKING=yes line from /etc/sysconfig/network - don't ask me why this entry is missing in this system here 2. (re) start postfix Expected results: No such message Additional info: Patch by quoting NETWORKING: --- /tmp/postfix.orig 2013-11-12 08:25:02.099905369 +0000 +++ /etc/init.d/postfix 2013-11-12 08:25:13.091364807 +0000 @@ -70,7 +70,7 @@ start() { [ "$EUID" != "0" ] && exit 4 # Check that networking is up. - [ ${NETWORKING} = "no" ] && exit 1 + [ "${NETWORKING}" = "no" ] && exit 1 conf_check # Start daemons. echo -n $"Starting postfix: "