[Bug 216628] www/uwsgi: setting a nondefault uwsgi_program prevents rc.d script from restarting/stopping uwsgi
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Mon Jan 30 23:07:38 UTC 2017
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216628
Bug ID: 216628
Summary: www/uwsgi: setting a nondefault uwsgi_program prevents
rc.d script from restarting/stopping uwsgi
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: demon at FreeBSD.org
Reporter: thomas at gibfest.dk
Assignee: demon at FreeBSD.org
Flags: maintainer-feedback?(demon at FreeBSD.org)
The following line in the uwsgi rc.d script is preventing proper rc.d
functionalify when specifying a different uwsgi_program in /etc/rc.conf:
: ${uwsgi_procname="${command}"}
With this line in place the rc script can start uwsgi (and uses the non-default
uwsgi program as it should) but it can't find the running instance, so "status"
"restart" and "stop" do not work.
This is because rc.subr uses $procname in check_pidfile() and the line above
defaults $procname to $command which is hardcoded to /usr/local/bin/uwsgi
further down in the rc.d script. So even if uwsgi_program is set to something
else, $procname is still set to /usr/local/bin/uwsgi which means rc.subr cant
find it.
Removing the line above appears to make everything work nicely when using a
non-default uwsgi_program. Works for me at least :)
Thanks!
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list