]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Thu, 22 Aug 2002 21:32:42 +0000 (21:32 +0000)
committerthib <thib>
Thu, 22 Aug 2002 21:32:42 +0000 (21:32 +0000)
Makefile.in
configure.in
doc/en/changes.sgml
doc/en/fcrondyn.1.sgml
doc/en/todo.sgml
dyncom.h

index 9471a913acf67ef0d0b765933499698998535cf9..d33e6f561affda29fa2a0d7ced19dc178d4caf11 100644 (file)
@@ -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
 
index 387e4e89d9aced53a1dbdbfc6cc0bb1ee4636bed..8d44b7d609dd993bcbe7df054cb98804079f3e09 100644 (file)
@@ -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)
index 18eb320402aa238ca5d259f27093f0ab2e5a76f4..e034f2453c590bba9a41994a9964f80a68c85980 100644 (file)
@@ -8,11 +8,26 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: changes.sgml,v 1.13 2002-08-11 21:09:22 thib Exp $ -->
+<!-- $Id: changes.sgml,v 1.14 2002-08-22 21:38:01 thib Exp $ -->
 
 <sect1 id="changes">
     <title>Changes</title>
 
+    <itemizedlist>
+       <title>From version 2.9.1 to 2.9.2</title>
+       <listitem>
+           <para>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.</para>
+       </listitem>
+       <listitem>
+           <para>fcrondyn's ls_lavgq, ls_serialq and ls_exeq are now functional.</para>
+       </listitem>
+       <listitem>
+           <para>bug fix : using DESTDIR with make wasn't working with the doc.</para>
+       </listitem>
+    </itemizedlist>
+
     <itemizedlist>
        <title>From version 2.9.0 to 2.9.1</title>
        <listitem>
index c69a526db17cc5e84bd4ce24551f727c69e9d75d..910a263ebcc43c7c78e1128e5733eb7dd9e27ee6 100644 (file)
@@ -8,7 +8,7 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: fcrondyn.1.sgml,v 1.4 2002-07-19 19:43:56 thib Exp $ -->
+<!-- $Id: fcrondyn.1.sgml,v 1.5 2002-08-22 21:37:58 thib Exp $ -->
 
 <refentry id="fcrondyn.1">
     <refmeta>
@@ -172,7 +172,7 @@ fields used by <command>ls*</command> commands.</para>
                <term><command>ls_lavgq</command>
 [<emphasis><type>user</type></emphasis>]</term>
                <listitem>
-                   <para></para>
+                   <para>(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))</para>
                </listitem>
            </varlistentry>
            <varlistentry>
index 7928ade4cac437c8d19ff0ce16db6b06accdf600..7cd26aa7bf583a98857e174070d476fc8dcd790c 100644 (file)
@@ -8,7 +8,7 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: todo.sgml,v 1.10 2002-08-11 21:08:57 thib Exp $ -->
+<!-- $Id: todo.sgml,v 1.11 2002-08-22 21:37:52 thib Exp $ -->
 
 <sect1 id="todo">
     <title>Todo</title>
@@ -19,7 +19,8 @@ people from doing the same thing. You can send me some propositions as
 well.</para>
     <itemizedlist>
        <listitem>
-           <para>bug fix : makewhatis does not work correctly with fcron 2.9.0</para>
+           <para>bug fix : makewhatis does not work correctly with fcron 2.9.0
+           and following</para>
            <para>Help is welcome to catch this bug !</para>
        </listitem>
        <listitem>
index cd00a100a45b59a0968db5e87ece8ec530812058..ff005f7fdd0a50d486e6db4ee4ce2ae3272637bf 100644 (file)
--- 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