]> granicus.if.org Git - fcron/commitdiff
A mail is now send to root after a crash to ask him
authorthib <thib>
Wed, 21 Jun 2000 10:42:19 +0000 (10:42 +0000)
committerthib <thib>
Wed, 21 Jun 2000 10:42:19 +0000 (10:42 +0000)
to do a bug report

Makefile.in
script/boot-install

index 7a617253b4ef0ca6d1b546345a2e3b6092e003e3..9a4e48a22e3e51e42a22fc3d83a005e3a1157f6e 100644 (file)
@@ -2,7 +2,7 @@
 # fcron's Makefile  ########
 ############################
 
-# $Id: Makefile.in,v 1.17 2000-06-19 12:44:18 thib Exp $
+# $Id: Makefile.in,v 1.18 2000-06-21 10:46:28 thib Exp $
 
 # ********************************************************* #
 # *** Begin of configurable stuffs ************************ #
@@ -104,7 +104,7 @@ install: all
        $(INSTALL) -c -m 644 -o root doc/fcrontab.1 $(DESTMAN)/man1/
        $(INSTALL) -c -m 644 -o root doc/fcrontab.5 $(DESTMAN)/man5/
        $(INSTALL) -c -m 644 -o root doc/bitstring.3 $(DESTMAN)/man3/
-       script/sysVinit-install "$(CFLAGS)" $(INSTALL)
+       (cd script ; ./sysVinit-install $(INSTALL) $(DESTSBIN))
        mkdir -p $(DESTDOC)/fcron-$(VERSION)
        cd doc; $(INSTALL) -c -m 644 -o root README LICENSE CHANGES *.html \
                 $(DESTDOC)/fcron-$(VERSION)/
index 5fa3e684baa04bdc0da1e57d55ac7dafc97c12e1..69bdeb5d8009c7bf8c31900c86821bcfff4ed8c0 100755 (executable)
@@ -2,51 +2,47 @@
 # Install fcron under SysV system.
 #
 
-# $Id: boot-install,v 1.6 2000-05-30 19:23:52 thib Exp $
+# $Id: boot-install,v 1.7 2000-06-21 10:42:19 thib Exp $
 
-# take two arguments : first is the compilation line arguments, in order
-#    to determine if fcron should be installed with debugs options,
-#    and the second is the name of the BSD-like install program
+# take one arguments : the name of the BSD-like install program
 
 PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"
 
 startdir=$pwd
+DEBUG=1
 
 if test $# -ne 2; then
     echo "Too few arguments"
     exit 1
 fi
 
+$1 -c -m 755 -o root fcron-launcher $2
+
 if test -f /etc/rc.d/rc.M; then
     # Slackware
-    if ! cat /etc/rc.d/rc.local | grep "fcron -b"; then
-       echo "fcron -b" >> /etc/rc.d/rc.local
+    if ! cat /etc/rc.d/rc.local | grep "fcron-launcher"; then
+       echo "fcron-launcher" >> /etc/rc.d/rc.local
     fi
 
 fi 
 if test -f /etc/rc; then
     # FreeBSD
-    if ! cat /etc/rc.local | grep "fcron -b"; then
-       echo "fcron -b" >> /etc/rc.local
+    if ! cat /etc/rc.local | grep "fcron-launcher"; then
+       echo "fcron-launcher" >> /etc/rc.local
     fi
 fi
 if test -d /etc/rc.d/init.d/; then    
-    if echo $1 | grep -e '-DDEBUG'; then
-      $2 -c -m 755 -o root script/sysVinit-launcher-debug /etc/rc.d/init.d/fcron
+    if test $DEBUG -eq 1; then
+      $1 -c -m 755 -o root sysVinit-launcher-debug /etc/rc.d/init.d/fcron
     else
-      $2 -c -m 755 -o root script/sysVinit-launcher /etc/rc.d/init.d/fcron
+      $1 -c -m 755 -o root sysVinit-launcher /etc/rc.d/init.d/fcron
     fi
     
-    cd /etc/rc.d/rc3.d/
-    ln -f -s ../init.d/fcron S40fcron
-    cd /etc/rc.d/rc4.d/
-    ln -f -s ../init.d/fcron S40fcron
-    cd /etc/rc.d/rc5.d/
-    ln -f -s ../init.d/fcron S40fcron
+    cd /etc/rc.d/rc3.d/ ; ln -f -s ../init.d/fcron S40fcron
+    cd /etc/rc.d/rc4.d/ ; ln -f -s ../init.d/fcron S40fcron
+    cd /etc/rc.d/rc5.d/ ; ln -f -s ../init.d/fcron S40fcron
     
-    cd /etc/rc.d/rc0.d/
-    ln -f -s ../init.d/fcron  K60fcron
-    cd /etc/rc.d/rc6.d/
-    ln -f -s ../init.d/fcron  K60fcron
+    cd /etc/rc.d/rc0.d/ ; ln -f -s ../init.d/fcron  K60fcron
+    cd /etc/rc.d/rc6.d/ ; ln -f -s ../init.d/fcron  K60fcron
     cd $startdir
 fi