Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 259620 Details for
Bug 346941
www-servers/uwsgi-0.9.6.6 Version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
init.d/uwsgi
uwsgi (text/plain), 1.07 KB, created by
Alexander Soloviƫv
on 2011-01-12 13:55:04 UTC
(
hide
)
Description:
init.d/uwsgi
Filename:
MIME Type:
Creator:
Alexander Soloviƫv
Created:
2011-01-12 13:55:04 UTC
Size:
1.07 KB
patch
obsolete
>#!/sbin/runscript > >UWSGI_RUN="/var/run/uwsgi/" > >NAME=${RC_SVCNAME#*.} >PID_FILE="${UWSGI_RUN}${NAME}.pid" > >depend() { > need net >} > >_get_mine_conf_var() { > local _var_name="${NAME}_$1" > echo ${!_var_name} >} > >start() { > > if [ "$NAME" == "$RC_SVCNAME" ] ; then > eerror "make symlink uwsgi.\${appname} to uwsgi" > return 8 > fi > > ebegin "Starting uwsgi application ${NAME}" > > BINARY=$(_get_mine_conf_var binary) > > if [ -z $BINARY ]; then BINARY=${default_binary}; fi > > if [ -z $BINARY ]; then BINARY=/usr/bin/uwsgi; fi > > if [ ! -x $BINARY ]; then > eerror "cannot find uwsgi binary" > return 1 > fi > > SOCKFILE=$(_get_mine_conf_var socket) > > if [ -z $SOCKFILE ]; then > SOCKFILE="${UWSGI_RUN}${NAME}.socket"; > fi > > start-stop-daemon --start \ > --exec /usr/bin/uwsgi -w 4 \ > --pidfile ${PID_FILE} -- \ > --master --pidfile ${PID_FILE} \ > --socket ${SOCKFILE} \ > --logdate $(_get_mine_conf_var options) \ > --daemonize "/var/log/uwsgi/${NAME}" > > eend $? >} > >stop() { > ebegin "Stopping uwsgi application ${NAME}" > > start-stop-daemon --signal 3 --quiet \ > --pidfile ${PID_FILE} > > eend $? >} > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 346941
:
255563
| 259620