summaryrefslogtreecommitdiff
path: root/comms/conserver8/patches
diff options
context:
space:
mode:
authorwiz <wiz>2005-06-03 20:08:04 +0000
committerwiz <wiz>2005-06-03 20:08:04 +0000
commitcc42f6fc0d51f09ce972d0d9a57c2096b2d08cd1 (patch)
treeda00e4de1524293a8d9210758ea8b85609ca5949 /comms/conserver8/patches
parentd7c2b8c0dcb31a09d4bf4cfd130edf2b5e594355 (diff)
downloadpkgsrc-cc42f6fc0d51f09ce972d0d9a57c2096b2d08cd1.tar.gz
Import of conserver8 from pkgsrc-wip, provided by Andreas Wrede:
Version 8 of Conserver as a separate package as the config file format of version 8 is incompatible with prior versions. Conserver is an application that allows multiple users to watch a serial console at the same time. It can log the data, allows users to take write-access of a console (one at a time), and has a variety of bells and whistles to accentuate that basic functionality. The idea is that conserver will log all your serial traffic so you can go back and review why something crashed, look at changes (if done on the console), or tie the console logs into a monitoring system (just watch the logfiles it creates). With multi-user capabilities you can work on equipment with others, mentor, train, etc. It also does all that client-server stuff so that, assuming you have a network connection, you can interact with any of the equipment from home or wherever
Diffstat (limited to 'comms/conserver8/patches')
-rw-r--r--comms/conserver8/patches/patch-aa34
1 files changed, 34 insertions, 0 deletions
diff --git a/comms/conserver8/patches/patch-aa b/comms/conserver8/patches/patch-aa
new file mode 100644
index 00000000000..db2c13c69a8
--- /dev/null
+++ b/comms/conserver8/patches/patch-aa
@@ -0,0 +1,34 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/06/03 20:08:04 wiz Exp $
+
+--- conserver/main.c.orig 2004-07-14 01:28:42.000000000 -0400
++++ conserver/main.c 2005-05-22 14:16:15.000000000 -0400
+@@ -460,7 +460,9 @@
+ int td;
+ #endif
+
++#if 0
+ Msg("daemonizing");
++#endif
+ SimpleSignal(SIGQUIT, SIG_IGN);
+ SimpleSignal(SIGINT, SIG_IGN);
+ #if defined(SIGTTOU)
+@@ -1259,7 +1261,9 @@
+ Bye(EX_OK);
+ }
+
++#if 0
+ Msg("%s", THIS_VERSION);
++#endif
+
+ #if HAVE_GETLOGIN
+ origuser = getlogin();
+@@ -1286,7 +1290,9 @@
+ BuildStringPrint(startedMsg, "started as `%s' by `%s'", curuser,
+ (origuser == (char *)0) ? curuser : origuser);
+ endpwent();
++#if 0
+ Msg("%s", startedMsg->string);
++#endif
+
+ #if HAVE_GETSPNAM && !HAVE_PAM
+ if (!fSyntaxOnly && (geteuid() != 0)) {