From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:28
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20274/scripts Modified Files: heartbeat hotplug Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heartbeat,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- heartbeat 5 Mar 2004 01:55:22 -0000 1.3 +++ heartbeat 16 Jun 2004 02:29:19 -0000 1.4 @@ -53,6 +53,13 @@ mkdir -p $CDDIR/var/lib/heartbeat || exit 1 rm -rf $WORKDIR/tmp || exit 1 + + cp -dp $MYDIR/scripts/heartbeat $ETCDIR/etc/init.d/ || exit 1 + + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME is to control failover servers\"" >> $SOFTWAREHELP fi ;; Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hotplug,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- hotplug 11 Jan 2004 14:43:04 -0000 1.10 +++ hotplug 16 Jun 2004 02:29:20 -0000 1.11 @@ -43,6 +43,11 @@ cp -dpR ./sbin/* $CDDIR/sbin/ || exit 1 cp -p $MYDIR/scripts/hotplug $ETCDIR/etc/init.d/ || exit 1 + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME automatically uses hotplug devices\"" >> $SOFTWAREHELP + fi ;; * ) |