Bug 651354
| Summary: | service 3proxy condrestart only does 'reload' under systemd | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | pankaj pandey <pankaj86> |
| Component: | systemd | Assignee: | Lennart Poettering <lpoetter> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 14 | CC: | lpoetter, metherid, mschmidt, notting, pahan, plautrba, theinric |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-03-08 01:35:33 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
pankaj pandey
2010-11-09 11:28:01 UTC
As a workaround i've replaced /etc/NetworkManager/dispatcher.d/40-3proxy file with following content:
#!/bin/sh
if [ "$2" = "up" ]; then
if /sbin/service 3proxy status; then
# reload doesn't work for 3proxy
# condrestart doesn't work for systemd-10-2
/sbin/service 3proxy stop
/sbin/service 3proxy start
fi
fi
Firstly thank you very much for the bugreport. Indeed, it seams systemd just do not restart service as requested. Reassigning. "systemctl condrestart" has been changed a while back to actually mean a restart and never accidentaly trigger a reload instead. Closing. |