diff options
author | Wolfgang Müller | 2021-10-29 11:49:11 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-10-29 11:49:11 +0200 |
commit | ef7aed48e056b58d106be2640b591d8022f86bfb (patch) | |
tree | 203b3a3c734663a1a0f7173c9190b3905a1d617f /www-misc/slowcgi/files | |
parent | d0b65ab0ad36bf693bbd71104d55814996d9eefd (diff) | |
download | pramantha-ef7aed48e056b58d106be2640b591d8022f86bfb.tar.gz |
www-misc/slowcgi: Bump to 7.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Diffstat (limited to 'www-misc/slowcgi/files')
-rw-r--r-- | www-misc/slowcgi/files/6.9-Add-flag-to-run-in-the-foreground.patch | 70 | ||||
-rw-r--r-- | www-misc/slowcgi/files/7.0-Add-flag-to-run-in-the-foreground.patch | 97 |
2 files changed, 97 insertions, 70 deletions
diff --git a/www-misc/slowcgi/files/6.9-Add-flag-to-run-in-the-foreground.patch b/www-misc/slowcgi/files/6.9-Add-flag-to-run-in-the-foreground.patch deleted file mode 100644 index a9f9e26..0000000 --- a/www-misc/slowcgi/files/6.9-Add-flag-to-run-in-the-foreground.patch +++ /dev/null @@ -1,70 +0,0 @@ -From 71a5493a09045ef3d90db42bdb5e1947c2512900 Mon Sep 17 00:00:00 2001 -From: Wynn Wolf Arbor <wolf@oriole.systems> -Date: Fri, 5 Jun 2020 21:14:44 +0200 -Subject: [PATCH] Add flag to run in the foreground - -slowcgi already has the -d flag to disable forking, but that particular -flag also enables debug output and stops slowcgi from logging to syslog. - -Ordinarily this would be fine, but sadly we know of no clean way to -track the PID of a forked process with Gentoo's OpenRC and its -start-stop-daemon(8). We could add support to write a pidfile instead, -but since we want to support multiple invocations of slowcgi through -OpenRC and ${RC_SVCNAME}, we need a way of specifying the pidfile -location in the init script itself. - -To solve this reasonably cleanly, add a flag that *only* controls -whether or not the program daemonizes or not. ---- - slowcgi.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -diff --git a/slowcgi.c b/slowcgi.c -index 0b5d62a..01f8139 100644 ---- a/slowcgi.c -+++ b/slowcgi.c -@@ -274,7 +274,7 @@ usage(void) - { - extern char *__progname; - fprintf(stderr, -- "usage: %s [-d] [-p path] [-s socket] [-U user] [-u user]\n", -+ "usage: %s [-df] [-p path] [-s socket] [-U user] [-u user]\n", - __progname); - exit(1); - } -@@ -282,6 +282,7 @@ usage(void) - struct timeval timeout = { TIMEOUT_DEFAULT, 0 }; - struct slowcgi_proc slowcgi_proc; - int debug = 0; -+int foreground = 0; - int on = 1; - char *fcgi_socket = "/var/www/run/slowcgi.sock"; - -@@ -314,11 +315,14 @@ main(int argc, char *argv[]) - } - } - -- while ((c = getopt(argc, argv, "dp:s:U:u:")) != -1) { -+ while ((c = getopt(argc, argv, "dfp:s:U:u:")) != -1) { - switch (c) { - case 'd': - debug++; - break; -+ case 'f': -+ foreground = 1; -+ break; - case 'p': - chrootpath = optarg; - break; -@@ -340,7 +344,7 @@ main(int argc, char *argv[]) - if (geteuid() != 0) - errx(1, "need root privileges"); - -- if (!debug && daemon(0, 0) == -1) -+ if (!debug && !foreground && daemon(0, 0) == -1) - err(1, "daemon"); - - if (!debug) { --- -2.30.0 - diff --git a/www-misc/slowcgi/files/7.0-Add-flag-to-run-in-the-foreground.patch b/www-misc/slowcgi/files/7.0-Add-flag-to-run-in-the-foreground.patch new file mode 100644 index 0000000..69e31bf --- /dev/null +++ b/www-misc/slowcgi/files/7.0-Add-flag-to-run-in-the-foreground.patch @@ -0,0 +1,97 @@ +From baed2c0935ca606d6d55d70b07db0cec7322f10c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Wolfgang=20M=C3=BCller?= <wolf@oriole.systems> +Date: Fri, 29 Oct 2021 11:45:32 +0200 +Subject: [PATCH] Add flag to run in the foreground + +slowcgi already has the -d flag to disable forking, but that particular +flag also stops slowcgi from logging to syslog and is intended for +debugging purposes. + +Ordinarily this would be fine, but sadly we know of no clean way to +track the PID of a forked process with Gentoo's OpenRC and its +start-stop-daemon(8). We could add support to write a pidfile instead, +but since we want to support multiple invocations of slowcgi through +OpenRC and ${RC_SVCNAME}, we need a way of specifying the pidfile +location in the init script itself. + +To solve this reasonably cleanly, add a flag that *only* controls +whether or not the program daemonizes or not. Make sure to mention this +in the manual too. +--- + slowcgi.8 | 6 +++++- + slowcgi.c | 10 +++++++--- + 2 files changed, 12 insertions(+), 4 deletions(-) + +diff --git a/slowcgi.8 b/slowcgi.8 +index cfc4dee..bdfc0b7 100644 +--- a/slowcgi.8 ++++ b/slowcgi.8 +@@ -22,7 +22,7 @@ + .Nd a FastCGI to CGI wrapper server + .Sh SYNOPSIS + .Nm +-.Op Fl dv ++.Op Fl dfv + .Op Fl p Ar path + .Op Fl s Ar socket + .Op Fl U Ar user +@@ -64,6 +64,10 @@ Do not daemonize. + If this option is specified, + .Nm + will run in the foreground and log to stderr. ++.It Fl f ++As ++.Fl d , ++but log to syslog. + .It Fl p Ar path + .Xr chroot 2 + to +diff --git a/slowcgi.c b/slowcgi.c +index 9999ac8..96662e0 100644 +--- a/slowcgi.c ++++ b/slowcgi.c +@@ -269,7 +269,7 @@ usage(void) + { + extern char *__progname; + fprintf(stderr, +- "usage: %s [-dv] [-p path] [-s socket] [-U user] [-u user]\n", ++ "usage: %s [-dfv] [-p path] [-s socket] [-U user] [-u user]\n", + __progname); + exit(1); + } +@@ -277,6 +277,7 @@ usage(void) + struct timeval timeout = { TIMEOUT_DEFAULT, 0 }; + struct slowcgi_proc slowcgi_proc; + int debug = 0; ++int foreground = 0; + int verbose = 0; + int on = 1; + char *fcgi_socket = "/var/www/run/slowcgi.sock"; +@@ -310,11 +311,14 @@ main(int argc, char *argv[]) + } + } + +- while ((c = getopt(argc, argv, "dp:s:U:u:v")) != -1) { ++ while ((c = getopt(argc, argv, "dfp:s:U:u:v")) != -1) { + switch (c) { + case 'd': + debug++; + break; ++ case 'f': ++ foreground = 1; ++ break; + case 'p': + chrootpath = optarg; + break; +@@ -339,7 +343,7 @@ main(int argc, char *argv[]) + if (geteuid() != 0) + errx(1, "need root privileges"); + +- if (!debug && daemon(0, 0) == -1) ++ if (!debug && !foreground && daemon(0, 0) == -1) + err(1, "daemon"); + + if (!debug) { +-- +2.33.1 + |