commit b9c05dcc86d7001eaf29ae4ab431f26c602ee4fe
parent c00d34ce945b67ca790789e7cb58ccef3148d309
Author: leitner <leitner>
Date: Thu, 22 Nov 2001 02:32:52 +0000
fix the logging bug
Diffstat:
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/CHANGES b/CHANGES
@@ -1,3 +1,10 @@
+0.7:
+ found and fixed the bug that made the logging support not work when
+ minit was running as PID 1.
+ saw that the shutdown from sysvinit actually does what it's supposed
+ to do, even with minit, if one uses the -n mode. It should be quite
+ easy to write a nice and clean shutdown for minit now.
+
0.6.1:
fixed msvc and minit handling of msvc -P.
pidfilehack has now actually been tested and works with ssh.
diff --git a/minit.c b/minit.c
@@ -398,9 +398,6 @@ main(int argc, char *argv[]) {
pfd.fd=infd;
pfd.events=POLLIN;
- if (i_am_init) {
- close(0); close(1); close(2);
- }
for (i=1; i<argc; i++) {
circsweep();
if (startservice(loadservice(argv[i]),0)) count++;