From: Aneesh K. K.V <ane...@di...> - 2002-10-30 12:46:15
|
Hi, But rc.nodedown is installed only for SSI and is also installed at a location dependent on distro( /etc/rc.d for redhat and /etc/init.d for debian. ) How do you want to handle this ? -aneesh On Wed, 2002-10-30 at 06:47, John Byrne wrote: > Update of /cvsroot/ci-linux/cluster-tools/cmd > In directory usw-pr-cvs1:/tmp/cvs-serv10017/cmd > > Modified Files: > Makefile > Added Files: > noded.c > Log Message: > Added noded back into build which I mistakenly deleted. (Needed for CI) > > > > Index: Makefile > =================================================================== > RCS file: /cvsroot/ci-linux/cluster-tools/cmd/Makefile,v > retrieving revision 1.11 > retrieving revision 1.12 > diff -C2 -d -r1.11 -r1.12 > *** Makefile 28 Aug 2002 04:02:53 -0000 1.11 > --- Makefile 30 Oct 2002 01:17:25 -0000 1.12 > *************** > *** 34,37 **** > --- 34,38 ---- > clusternode_setstate \ > clusternode_num \ > + noded \ > onnode \ > onall \ > *************** > *** 63,66 **** > --- 64,70 ---- > $(CC) $(LDFLAGS) $(STATIC) -o $@ clusternode_num.o -lcluster > > + noded: noded.o > + $(CC) $(LDFLAGS) $(STATIC) -o $@ noded.o -lcluster > + > onnode: onnode.o > $(CC) $(LDFLAGS) $(STATIC) -o $@ onnode.o -lcluster > *************** > *** 97,100 **** > --- 101,105 ---- > $(INSTALL) clusternode_setstate $(UML_ROOT)$(USRSBIN)/clusternode_setstate > $(INSTALL) clusternode_num $(UML_ROOT)$(USRSBIN)/clusternode_num > + $(INSTALL) -m 755 -o root -g root noded $(UML_ROOT)$(USRSBIN)/noded > $(INSTALL) cluster_start $(UML_ROOT)$(USRSBIN)/cluster_start > $(INSTALL) onnode $(UML_ROOT)$(USRSBIN)/onnode > *************** > *** 115,118 **** > --- 120,124 ---- > rm -f $(UML_ROOT)$(USRSBIN)/clusternode_setstate > rm -f $(UML_ROOT)$(USRSBIN)/clusternode_num > + rm -f $(UML_ROOT)$(USRSBIN)/noded > rm -f $(UML_ROOT)$(USRSBIN)/cluster_start > rm -f $(UML_ROOT)$(SBIN)/onnode > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Ci-linux-checkins mailing list > Ci-...@li... > https://lists.sourceforge.net/lists/listinfo/ci-linux-checkins |