Christian Wiese
12 years ago
committed by
Christian Wiese
2 changed files with 154 additions and 80 deletions
@ -0,0 +1,154 @@ |
|||||||
|
From 737b3b4f4d1ecdff6597f5f299bdef6873147bf8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <christian.wiese@securepoint.de>
|
||||||
|
Date: Thu, 25 Apr 2013 16:27:56 +0200
|
||||||
|
Subject: [PATCH] common: add global variable for foreground operation
|
||||||
|
|
||||||
|
---
|
||||||
|
common/common.c | 1 +
|
||||||
|
include/common.h | 3 +++
|
||||||
|
2 files changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/common/common.c b/common/common.c
|
||||||
|
index ef680b0..e02190a 100644
|
||||||
|
--- a/common/common.c
|
||||||
|
+++ b/common/common.c
|
||||||
|
@@ -32,6 +32,7 @@
|
||||||
|
#include "nut_version.h"
|
||||||
|
const char *UPS_VERSION = NUT_VERSION_MACRO;
|
||||||
|
|
||||||
|
+ int foreground = 0;
|
||||||
|
int nut_debug_level = 0;
|
||||||
|
int nut_log_level = 0;
|
||||||
|
static int upslog_flags = UPSLOG_STDERR;
|
||||||
|
diff --git a/include/common.h b/include/common.h
|
||||||
|
index d044d52..a67c176 100644
|
||||||
|
--- a/include/common.h
|
||||||
|
+++ b/include/common.h
|
||||||
|
@@ -52,6 +52,9 @@ void open_syslog(const char *progname);
|
||||||
|
/* close ttys and become a daemon */
|
||||||
|
void background(void);
|
||||||
|
|
||||||
|
+/* do not detach from controlling tty and run in foreground */
|
||||||
|
+extern int foreground;
|
||||||
|
+
|
||||||
|
/* do this here to keep pwd/grp stuff out of the main files */
|
||||||
|
struct passwd *get_user_pwent(const char *name);
|
||||||
|
|
||||||
|
--
|
||||||
|
1.7.10.2
|
||||||
|
|
||||||
|
|
||||||
|
From 7201d2536e3ca96a617d38c8c1e680200fcdf83e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <christian.wiese@securepoint.de>
|
||||||
|
Date: Thu, 25 Apr 2013 16:29:21 +0200
|
||||||
|
Subject: [PATCH] drivers: add command line option to not detach from
|
||||||
|
controlling tty
|
||||||
|
|
||||||
|
This is needed to run the standalone driver by a supervise service like
|
||||||
|
daemontools, runit, s6 etc. without getting all the noise when using
|
||||||
|
the -D option for debugging.
|
||||||
|
|
||||||
|
The original default behavoir, which detaches from the controlling tty
|
||||||
|
and running in background has been preserved.
|
||||||
|
|
||||||
|
To run a driver in foreground you have to use the -f command option.
|
||||||
|
---
|
||||||
|
drivers/main.c | 8 ++++++--
|
||||||
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/drivers/main.c b/drivers/main.c
|
||||||
|
index 7c2fc55..42f6ec9 100644
|
||||||
|
--- a/drivers/main.c
|
||||||
|
+++ b/drivers/main.c
|
||||||
|
@@ -89,6 +89,7 @@ static void help_msg(void)
|
||||||
|
printf(" -a <id> - autoconfig using ups.conf section <id>\n");
|
||||||
|
printf(" - note: -x after -a overrides ups.conf settings\n\n");
|
||||||
|
|
||||||
|
+ printf(" -f - run in foreground\n");
|
||||||
|
printf(" -V - print version, then exit\n");
|
||||||
|
printf(" -L - print parseable list of driver variables\n");
|
||||||
|
printf(" -D - raise debugging level\n");
|
||||||
|
@@ -488,7 +489,7 @@ int main(int argc, char **argv)
|
||||||
|
/* build the driver's extra (-x) variable table */
|
||||||
|
upsdrv_makevartable();
|
||||||
|
|
||||||
|
- while ((i = getopt(argc, argv, "+a:kDhx:Lqr:u:Vi:")) != -1) {
|
||||||
|
+ while ((i = getopt(argc, argv, "+a:fkDhx:Lqr:u:Vi:")) != -1) {
|
||||||
|
switch (i) {
|
||||||
|
case 'a':
|
||||||
|
upsname = optarg;
|
||||||
|
@@ -499,6 +500,9 @@ int main(int argc, char **argv)
|
||||||
|
fatalx(EXIT_FAILURE, "Error: Section %s not found in ups.conf",
|
||||||
|
optarg);
|
||||||
|
break;
|
||||||
|
+ case 'f':
|
||||||
|
+ foreground = 1;
|
||||||
|
+ break;
|
||||||
|
case 'D':
|
||||||
|
nut_debug_level++;
|
||||||
|
break;
|
||||||
|
@@ -668,7 +672,7 @@ int main(int argc, char **argv)
|
||||||
|
if (dstate_getinfo("ups.serial") != NULL)
|
||||||
|
dstate_setinfo("device.serial", "%s", dstate_getinfo("ups.serial"));
|
||||||
|
|
||||||
|
- if (nut_debug_level == 0) {
|
||||||
|
+ if ((nut_debug_level == 0) && (!foreground)) {
|
||||||
|
background();
|
||||||
|
writepid(pidfn); /* PID changes when backgrounding */
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.7.10.2
|
||||||
|
|
||||||
|
|
||||||
|
From 285bc3c90146b24508ebbcab21c8ebab3d990f63 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <christian.wiese@securepoint.de>
|
||||||
|
Date: Thu, 25 Apr 2013 16:38:17 +0200
|
||||||
|
Subject: [PATCH] upsd: add command line option to not detach from controlling
|
||||||
|
tty
|
||||||
|
|
||||||
|
This is needed to run upsd by a supervise service like daemontools, runit, s6
|
||||||
|
etc. without getting all the noise when using the -D option for debugging.
|
||||||
|
|
||||||
|
The original default behavoir, which detaches from the controlling tty and
|
||||||
|
running in background has been preserved.
|
||||||
|
|
||||||
|
To run upsd in foreground you have to use the -f command option.
|
||||||
|
---
|
||||||
|
server/upsd.c | 7 ++++++-
|
||||||
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/server/upsd.c b/server/upsd.c
|
||||||
|
index f8d9c7e..86964c0 100644
|
||||||
|
--- a/server/upsd.c
|
||||||
|
+++ b/server/upsd.c
|
||||||
|
@@ -819,6 +819,7 @@ static void help(const char *progname)
|
||||||
|
printf(" - reload: reread configuration files\n");
|
||||||
|
printf(" - stop: stop process and exit\n");
|
||||||
|
printf(" -D raise debugging level\n");
|
||||||
|
+ printf(" -f run in foreground\n");
|
||||||
|
printf(" -h display this help\n");
|
||||||
|
printf(" -r <dir> chroots to <dir>\n");
|
||||||
|
printf(" -q raise log level threshold\n");
|
||||||
|
@@ -936,6 +937,10 @@ int main(int argc, char **argv)
|
||||||
|
nut_debug_level++;
|
||||||
|
break;
|
||||||
|
|
||||||
|
+ case 'f':
|
||||||
|
+ foreground = 1;
|
||||||
|
+ break;
|
||||||
|
+
|
||||||
|
case '4':
|
||||||
|
opt_af = AF_INET;
|
||||||
|
break;
|
||||||
|
@@ -1023,7 +1028,7 @@ int main(int argc, char **argv)
|
||||||
|
/* handle upsd.users */
|
||||||
|
user_load();
|
||||||
|
|
||||||
|
- if (!nut_debug_level) {
|
||||||
|
+ if ((!nut_debug_level) && (!foreground)) {
|
||||||
|
background();
|
||||||
|
writepid(pidfn);
|
||||||
|
} else {
|
||||||
|
--
|
||||||
|
1.7.10.2
|
||||||
|
|
@ -1,80 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
||||||
#
|
|
||||||
# Filename: package/.../nut/nut-2.6.5-upsd-foreground.patch
|
|
||||||
# Copyright (C) 2012 The OpenSDE Project
|
|
||||||
#
|
|
||||||
# More information can be found in the files COPYING and README.
|
|
||||||
#
|
|
||||||
# This patch file is dual-licensed. It is available under the license the
|
|
||||||
# patched project is licensed under, as long as it is an OpenSource license
|
|
||||||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
|
||||||
# of the GNU General Public License as published by the Free Software
|
|
||||||
# Foundation; either version 2 of the License, or (at your option) any later
|
|
||||||
# version.
|
|
||||||
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
||||||
|
|
||||||
Description: Add option upsd to not detach from the controlling tty
|
|
||||||
|
|
||||||
This is needed to run upsd by a supervise service like daemontools,
|
|
||||||
runit.
|
|
||||||
|
|
||||||
The original default behavoir, which detaches from the controlling tty
|
|
||||||
and running in background has been preserved.
|
|
||||||
To run upsd in foreground you have to use the -f command option.
|
|
||||||
|
|
||||||
diff -ruN nut-2.6.5-orig/common/common.c nut-2.6.5/common/common.c
|
|
||||||
--- nut-2.6.5-orig/common/common.c 2012-07-31 19:38:58.000000000 +0200
|
|
||||||
+++ nut-2.6.5/common/common.c 2012-08-15 09:07:43.949002650 +0200
|
|
||||||
@@ -32,6 +32,7 @@
|
|
||||||
#include "nut_version.h"
|
|
||||||
const char *UPS_VERSION = NUT_VERSION_MACRO;
|
|
||||||
|
|
||||||
+ int foreground = 0;
|
|
||||||
int nut_debug_level = 0;
|
|
||||||
int nut_log_level = 0;
|
|
||||||
static int upslog_flags = UPSLOG_STDERR;
|
|
||||||
diff -ruN nut-2.6.5-orig/include/common.h nut-2.6.5/include/common.h
|
|
||||||
--- nut-2.6.5-orig/include/common.h 2012-07-31 19:38:56.000000000 +0200
|
|
||||||
+++ nut-2.6.5/include/common.h 2012-08-15 09:14:10.999949407 +0200
|
|
||||||
@@ -52,6 +52,9 @@
|
|
||||||
/* close ttys and become a daemon */
|
|
||||||
void background(void);
|
|
||||||
|
|
||||||
+/* do not detach from controlling tty and run in foreground */
|
|
||||||
+extern int foreground;
|
|
||||||
+
|
|
||||||
/* do this here to keep pwd/grp stuff out of the main files */
|
|
||||||
struct passwd *get_user_pwent(const char *name);
|
|
||||||
|
|
||||||
diff -ruN nut-2.6.5-orig/server/upsd.c nut-2.6.5/server/upsd.c
|
|
||||||
--- nut-2.6.5-orig/server/upsd.c 2012-07-31 19:38:58.000000000 +0200
|
|
||||||
+++ nut-2.6.5/server/upsd.c 2012-08-15 09:07:43.949002650 +0200
|
|
||||||
@@ -819,6 +819,7 @@
|
|
||||||
printf(" - reload: reread configuration files\n");
|
|
||||||
printf(" - stop: stop process and exit\n");
|
|
||||||
printf(" -D raise debugging level\n");
|
|
||||||
+ printf(" -f run in foreground\n");
|
|
||||||
printf(" -h display this help\n");
|
|
||||||
printf(" -r <dir> chroots to <dir>\n");
|
|
||||||
printf(" -q raise log level threshold\n");
|
|
||||||
@@ -936,6 +937,10 @@
|
|
||||||
nut_debug_level++;
|
|
||||||
break;
|
|
||||||
|
|
||||||
+ case 'f':
|
|
||||||
+ foreground = 1;
|
|
||||||
+ break;
|
|
||||||
+
|
|
||||||
case '4':
|
|
||||||
opt_af = AF_INET;
|
|
||||||
break;
|
|
||||||
@@ -1023,7 +1028,7 @@
|
|
||||||
/* handle upsd.users */
|
|
||||||
user_load();
|
|
||||||
|
|
||||||
- if (!nut_debug_level) {
|
|
||||||
+ if ((!nut_debug_level) && (!foreground)) {
|
|
||||||
background();
|
|
||||||
writepid(pidfn);
|
|
||||||
} else {
|
|
Loading…
Reference in new issue