X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=56480418c64a9ee0b45894281a9184c40e2414d6;hb=e1f1050c332744ddb2b8bf1f771eb8beeebfca3b;hp=853577e62d47c4919b00451734ca4ecb3d7fc5c0;hpb=6770d8ce6d50010e883cda5076c2c1e745ac6085;p=nodemanager.git diff --git a/Makefile b/Makefile index 853577e..5648041 100644 --- a/Makefile +++ b/Makefile @@ -9,20 +9,9 @@ # autoconf compatible variables datadir := /usr/share bindir := /usr/bin -initdir=/etc/init.d -systemddir := /usr/lib/systemd/system - -#################### # call with either WITH_SYSTEMD=true or WITH_INIT=true -ifneq "$(WITH_SYSTEMD)" "" -use_sytemd=true -else -ifneq "$(WITH_INIT)" "" -use_systemd="" -else # if not set then try to guess -use_systemd=$(bash -c 'type -p systemctl') -endif -endif +initdir=/etc/rc.d/init.d +systemddir := /usr/lib/systemd/system #################### lib: forward_api_calls @@ -46,18 +35,26 @@ install-lib: install-miscell install-startup --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 @@ -93,7 +90,35 @@ clean: .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: 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 @@ -137,8 +162,7 @@ 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