From d3551cd8a7bfff92740f1202501fb55e3eefd287 Mon Sep 17 00:00:00 2001 From: thib Date: Thu, 22 Aug 2002 21:32:42 +0000 Subject: [PATCH] *** empty log message *** --- Makefile.in | 6 ++---- configure.in | 2 +- doc/en/changes.sgml | 17 ++++++++++++++++- doc/en/fcrondyn.1.sgml | 4 ++-- doc/en/todo.sgml | 5 +++-- dyncom.h | 6 ++++-- 6 files changed, 28 insertions(+), 12 deletions(-) diff --git a/Makefile.in b/Makefile.in index 9471a91..d33e6f5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # @configure_input@ -# $Id: Makefile.in,v 1.88 2002-08-11 20:25:57 thib Exp $ +# $Id: Makefile.in,v 1.89 2002-08-22 21:32:55 thib Exp $ # The following should not be edited manually (use configure options) # If you must do it, BEWARE : some of the following is also defined @@ -23,8 +23,6 @@ prefix = $(DESTDIR)@prefix@ exec_prefix = $(DESTDIR)@exec_prefix@ DESTSBIN = @sbindir@ DESTBIN = @bindir@ -DESTMAN = $(DESTDIR)@mandir@ -DESTDOC = $(DESTDIR)@DOCDIR@ FCRONTABS = $(DESTDIR)@FCRONTABS@ ETC = $(DESTDIR)@ETC@ OPTIM = @CFLAGS@ @@ -150,7 +148,7 @@ install-boot: install install-restart: install ifeq ($(DEBUG), 1) - kill -TERM `pidof fcron` + kill -TERM `pidof fcron` || exit 0 /etc/rc.d/init.d/fcron start endif diff --git a/configure.in b/configure.in index 387e4e8..8d44b7d 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ AC_PREFIX_DEFAULT($prefix) AC_CONFIG_HEADER(config.h) AC_PREREQ(2.7) -vers="2.9.1" +vers="2.9.2" vers_quoted="\"$vers\"" AC_DEFINE_UNQUOTED(VERSION, $vers) AC_DEFINE_UNQUOTED(VERSION_QUOTED, $vers_quoted) diff --git a/doc/en/changes.sgml b/doc/en/changes.sgml index 18eb320..e034f24 100644 --- a/doc/en/changes.sgml +++ b/doc/en/changes.sgml @@ -8,11 +8,26 @@ Foundation. A copy of the license is included in gfdl.sgml. --> - + Changes + + From version 2.9.1 to 2.9.2 + + fcron now calls shutdown() when a connection from fcrondyn is closed. +Another change in the code should prevent fcrondyn from not returning to the prompt after +a command has been run. + + + fcrondyn's ls_lavgq, ls_serialq and ls_exeq are now functional. + + + bug fix : using DESTDIR with make wasn't working with the doc. + + + From version 2.9.0 to 2.9.1 diff --git a/doc/en/fcrondyn.1.sgml b/doc/en/fcrondyn.1.sgml index c69a526..910a263 100644 --- a/doc/en/fcrondyn.1.sgml +++ b/doc/en/fcrondyn.1.sgml @@ -8,7 +8,7 @@ Foundation. A copy of the license is included in gfdl.sgml. --> - + @@ -172,7 +172,7 @@ fields used by ls* commands. ls_lavgq [user] - + (NOT THE PID OF THE JOB ITSELF BUT THE FCRON PROCESS CONTROLLING IT - but the job's pid is likely to be next to that one (under linux at least)) diff --git a/doc/en/todo.sgml b/doc/en/todo.sgml index 7928ade..7cd26aa 100644 --- a/doc/en/todo.sgml +++ b/doc/en/todo.sgml @@ -8,7 +8,7 @@ Foundation. A copy of the license is included in gfdl.sgml. --> - + Todo @@ -19,7 +19,8 @@ people from doing the same thing. You can send me some propositions as well. - bug fix : makewhatis does not work correctly with fcron 2.9.0 + bug fix : makewhatis does not work correctly with fcron 2.9.0 + and following Help is welcome to catch this bug ! diff --git a/dyncom.h b/dyncom.h index cd00a10..ff005f7 100644 --- a/dyncom.h +++ b/dyncom.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: dyncom.h,v 1.1 2002-03-02 17:28:24 thib Exp $ */ + /* $Id: dyncom.h,v 1.2 2002-08-22 21:33:20 thib Exp $ */ /* This file describe the communication protocol between fcron and fcrondyn */ @@ -41,7 +41,9 @@ #endif /* string which means : "No more data to read" */ -#define END_STR "\0\0" +/* Warning : should be a 1-char string, otherwise we need more tests in talk_fcron() + * (because the string may be recv()ed in 2 pieces) */ +#define END_STR "\0" /* arg types */ #define USER 1 -- 2.40.0