X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=c5c719e6138663e77bc7cffe0baafccfed55c243;hb=ccc7b9c4b76a89faad66867b00d16ac45333b6de;hp=e6c256921514652e7de807a5bdb2bc8ff8118327;hpb=1334ddd42493d677b33a8a13036eddc4fb3316c5;p=nodemanager.git diff --git a/Makefile b/Makefile index e6c2569..c5c719e 100644 --- a/Makefile +++ b/Makefile @@ -9,55 +9,54 @@ # autoconf compatible variables datadir := /usr/share bindir := /usr/bin -initdir=/etc/init.d +initdir=/etc/rc.d/init.d systemddir := /usr/lib/systemd/system -#################### # call with either WITH_SYSTEMD=true or WITH_INIT=true -ifneq "$(WITH_SYSTEMD)" "" -use_sytemd=true +# otherwise we try to guess some reasonable default +ifeq "$(WITH_INIT)$(WITH_SYSTEMD)" "" +ifeq "$(wildcard $systemddir/*)" "" +WITH_INIT=true else -ifneq "$(WITH_INIT)" "" -use_systemd="" -else # if not set then try to guess -use_systemd=$(bash -c 'type -p systemctl') +WITH_SYSTEMD=true endif endif - #################### -lib: forward_api_calls - python setup-lib.py build - -vs: - python setup-vs.py build - -lxc: - python setup-lxc.py build +all: forward_api_calls + python setup.py build forward_api_calls: forward_api_calls.c $(CC) -Wall -Os -o $@ $? strip $@ #################### install -install-lib: install-miscell install-startup - python setup-lib.py install \ +install: install-miscell install-startup + python setup.py install \ --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \ --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \ --install-scripts=$(DESTDIR)/$(bindir) # might be better in setup.py ? +# NOTE: the sliver-initscripts/ and sliver-systemd stuff, being, well, for slivers, +# need to ship on all nodes regardless of WITH_INIT and WITH_SYSTEMD that +# impacts how nodemanager itself gets started install-miscell: install -d -m 755 $(DESTDIR)/var/lib/nodemanager + install -D -m 644 /dev/null $(DESTDIR)/etc/sysconfig/nodemanager install -D -m 444 README $(DESTDIR)/$(datadir)/NodeManager/README install -D -m 644 logrotate/nodemanager $(DESTDIR)/etc/logrotate.d/nodemanager - install -D -m 755 sshsh $(DESTDIR)/bin/sshsh mkdir -p $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts rsync -av sliver-initscripts/ $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts/ chmod 755 $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts/ + mkdir -p $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd + rsync -av sliver-systemd/ $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd/ + chmod 755 $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd/ -ifneq "$use_systemd" "" +# this now is for the startup of nodemanager itself +ifneq "$(WITH_SYSTEMD)" "" install-startup: install-systemd -else +endif +ifneq "$(WITH_INIT)" "" install-startup: install-init endif @@ -70,30 +69,43 @@ install-systemd: mkdir -p $(DESTDIR)/$(systemddir) rsync -av systemd/ $(DESTDIR)/$(systemddir) -install-vs: - python setup-vs.py install \ - --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \ - --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \ - --install-scripts=$(DESTDIR)/$(bindir) - install -m 444 README $(DESTDIR)/$(datadir)/NodeManager - -install-lxc: - python setup-lxc.py install \ - --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \ - --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \ - --install-scripts=$(DESTDIR)/$(bindir) - install -m 444 README $(DESTDIR)/$(datadir)/NodeManager - #################### clean clean: - python setup-lib.py clean - python setup-vs.py clean - python setup-lxc.py clean + python setup.py clean rm -f forward_api_calls *.pyc build .PHONY: all install clean -########## +#################### debian-related +# This is called from the build with the following variables set +# (see build/Makefile and target_debian) +# (.) RPMTARBALL +# (.) RPMVERSION +# (.) RPMRELEASE +# (.) RPMNAME +DEBVERSION=$(RPMVERSION).$(RPMRELEASE) +DEBTARBALL=../$(RPMNAME)_$(DEBVERSION).orig.tar.bz2 +DATE=$(shell date -u +"%a, %d %b %Y %T") +force: + +debian: DESTDIR=debian/tmp +debian: forward_api_calls install debian/changelog debian.source debian.package + +debian/changelog: debian/changelog.in + sed -e "s|@VERSION@|$(DEBVERSION)|" -e "s|@DATE@|$(DATE)|" debian/changelog.in > debian/changelog + +debian.source: force + rsync -a $(RPMTARBALL) $(DEBTARBALL) + +debian.package: + debuild --set-envvar PREFIX=/usr -uc -us -b + +debian.clean: + $(MAKE) -f debian/rules clean + rm -rf build/ MANIFEST ../*.tar.gz ../*.dsc ../*.build + find . -name '*.pyc' -delete + +################################################## devel-oriented tags: (find . '(' -name '*.py' -o -name '*.c' -o -name '*.spec' ')' ; ls initscripts/*) | xargs etags @@ -123,8 +135,11 @@ NODEURL:=root@$(NODE):/ endif # this is for lxc only, we need to exclude the vs stuff that otherwise messes up everything on node -# keep this in sync with setup-vs.spec -LXC_EXCLUDES= --exclude sliver_vs.py --exclude coresched_vs.py +# WARNING: keep this in sync with setup.spec +LXC_EXCLUDES= --exclude sliver_vs.py --exclude coresched_vs.py --exclude drl.py + +# run with make SYNC_RESTART=false if you want to skip restarting nm +SYNC_RESTART=true sync:synclxc @@ -137,13 +152,32 @@ else @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx @echo WARNING : this target might not be very reliable - use with care @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - +$(RSYNC) --exclude sshsh $(LXC_EXCLUDES) --delete-excluded ./ $(NODEURL)/usr/share/NodeManager/ - +$(RSYNC) ./sshsh $(NODEURL)/bin/ + +$(RSYNC) $(LXC_EXCLUDES) --delete-excluded ./ $(NODEURL)/usr/share/NodeManager/ # +$(RSYNC) ./initscripts/ $(NODEURL)/etc/init.d/ +$(RSYNC) ./systemd/ $(NODEURL)/usr/lib/systemd/system/ -# ssh -i $(NODE).key.rsa root@$(NODE) service nm restart + -$(SYNC_RESTART) && { ssh -i $(NODE).key.rsa root@$(NODE) service nm restart ; } ||: endif +# this is for vs only, we need to exclude the lxc stuff that otherwise messes up everything on node +# xxx keep this in sync with setup.spec +VS_EXCLUDES= --exclude sliver_libvirt.py --exclude sliver_lxc.py --exclude cgroups.py --exclude coresched_lxc.py --exclude privatebridge.py + +syncvs: $(NODE).key.rsa +ifeq (,$(NODEURL)) + @echo "syncvs: You must define NODE on the command line" + @echo " e.g. make sync NODE=vnode01.inria.fr" + @exit 1 +else + @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx + @echo WARNING : this target might not be very reliable - use with care + @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx + +$(RSYNC) $(VS_EXCLUDES) --delete-excluded ./ $(NODEURL)/usr/share/NodeManager/ + +$(RSYNC) ./initscripts/ $(NODEURL)/etc/init.d/ +# +$(RSYNC) ./systemd/ $(NODEURL)/usr/lib/systemd/system/ + -$(SYNC_RESTART) && { ssh -i $(NODE).key.rsa root@$(NODE) service nm restart ; } ||: +endif + + ### fetching the key TESTMASTER ?= testmaster.onelab.eu @@ -164,3 +198,11 @@ else @echo "FETCHING key" +scp $(KEYURL) $@ endif + +########## exp. too +SLICE=inri_sl1 + +syncvinit: + $(RSYNC) sliver-systemd/vinit.st* $(NODEURL)/vservers/$(SLICE)/usr/bin/ + $(RSYNC) sliver-systemd/vinit.service $(NODEURL)/vservers/$(SLICE)/usr/lib/systemd/system/ + echo "remember to run 'systemctl --system daemon-reload' within this slice"