Summary: | koha-plack contains a wrong test about missing Apache modules | ||
---|---|---|---|
Product: | Koha | Reporter: | Marcel de Rooy <m.de.rooy> |
Component: | Architecture, internals, and plumbing | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | minor | ||
Priority: | P5 - low | CC: | tomascohen |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
GIT URL: | Change sponsored?: | --- | |
Patch complexity: | --- | Documentation contact: | |
Documentation submission: | Text to go in the release notes: | ||
Version(s) released in: | Circulation function: |
Description
Marcel de Rooy
2023-07-26 15:03:08 UTC
/usr/sbin/apachectl -M 2>/dev/null | grep -q headers; echo "${PIPESTATUS[0]} ${PIPESTATUS[1]}" 1 1 Error fixed /usr/sbin/apachectl -M 2>/dev/null | grep -q headers; echo "${PIPESTATUS[0]} ${PIPESTATUS[1]}" /usr/sbin/apachectl -M 2>/dev/null | grep -q badheaders; echo "${PIPESTATUS[0]} ${PIPESTATUS[1]}" 0 1 (In reply to Marcel de Rooy from comment #2) > /usr/sbin/apachectl -M 2>/dev/null | grep -q headers; echo "${PIPESTATUS[0]} > ${PIPESTATUS[1]}" 0 0 |