From c3608471cd4f6808ed90d4185eda9424cf25e6ab Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 2 May 2007 12:33:56 +0000 Subject: SSD_NICELEVEL can now affect the nicelevel for daemons started by start-stop-daemon, #175397. --- src/start-stop-daemon.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/start-stop-daemon.c') diff --git a/src/start-stop-daemon.c b/src/start-stop-daemon.c index f4f0f99e..62973dc6 100644 --- a/src/start-stop-daemon.c +++ b/src/start-stop-daemon.c @@ -537,6 +537,10 @@ int main (int argc, char **argv) signal (SIGQUIT, handle_signal); signal (SIGTERM, handle_signal); + if ((env = getenv ("SSD_NICELEVEL"))) + if (sscanf (env, "%d", &nicelevel) != 1) + eerror ("%s: invalid nice level `%s' (SSD_NICELEVEL)", progname, env); + while ((c = getopt_long (argc, argv, "KN:R:Sbc:d:g:mn:op:qs:tu:r:vx:1:2:", longopts, (int *) 0)) != -1) -- cgit v1.2.3