X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=4b130d5ed630bfc8b8655893a4e007310f8ae94c;hb=6f1e50cea0e27a036af14544a1c6c35bc1cfd539;hp=eeab636d4bafab61c58fd920271329adc27924e7;hpb=5c00a570abc223d58b171bc88b072085d69fa232;p=nodemanager.git diff --git a/Makefile b/Makefile index eeab636..4b130d5 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ install: --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \ --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \ --install-scripts=$(DESTDIR)/$(bindir) + install -m 444 README $(DESTDIR)/$(datadir)/NodeManager clean: python setup.py clean @@ -37,3 +38,60 @@ tags: .PHONY: tags +########## sync +# for use with the test framework; push local stuff on a test node +# make sync NODE=vnode01.inria.fr +# specify TESTMASTER and BUILD if the key is not available yet + +LOCAL_RSYNC_EXCLUDES := --exclude '*.pyc' +RSYNC_EXCLUDES := --exclude .svn --exclude CVS --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES) +RSYNC_COND_DRY_RUN := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,) +RSYNC := rsync -e "ssh -i $(NODE).key.rsa" -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES) + +ifdef NODE +NODEURL:=root@$(NODE):/ +endif + +sync: $(NODE).key.rsa +ifeq (,$(NODEURL)) + @echo "sync: You must define NODE on the command line" + @echo " e.g. make sync NODE=vnode01.inria.fr" + @exit 1 +else + +$(RSYNC) ./ $(NODEURL)/usr/share/NodeManager/ + +$(RSYNC) ./initscripts/nm $(NODEURL)/etc/init.d/nm +endif + +### fetching the key + +TESTMASTER ?= testmaster.onelab.eu + +ifdef BUILD +KEYURL:=root@$(TESTMASTER):$(BUILD)/keys/key1.rsa +endif + +key: $(NODE).key.rsa + +$(NODE).key.rsa: +ifeq (,$(KEYURL)) + @echo "sync: fetching $@ - You must define TESTMASTER, BUILD and NODE on the command line" + @echo " e.g. make sync TESTMASTER=testmaster.onelab.eu BUILD=2010.01.22--1l-f8-32 NODE=vnode01.inria.fr" + @echo " note that for now all test builds use the same key, so any BUILD would do" + @exit 1 +else + @echo "FETCHING key" + +scp $(KEYURL) $@ +endif + +### utility - find out the node name for a given BUILD + +ifdef BUILD +NODEIPCOMMAND:=ssh root@$(TESTMASTER) cat $(BUILD)/arg-ips-node +endif + +nodename: +ifeq (,$(NODEIPCOMMAND)) + @echo "nodename: You must define TESTMASTER and BUILD on the command line" +else + $(NODEIPCOMMAND) +endif