install for sytemd *or* init
[nodemanager.git] / Makefile
1 #
2 # Node Manager Makefile
3 #
4 # David Eisenstat <deisenst@cs.princeton.edu>
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2006 The Trustees of Princeton University
7 #
8
9 # autoconf compatible variables
10 datadir := /usr/share
11 bindir := /usr/bin
12 # call with either WITH_SYSTEMD=true or WITH_INIT=true
13 initdir=/etc/rc.d/init.d
14 systemddir := /usr/lib/systemd/system
15
16 ####################
17 lib: forward_api_calls
18         python setup-lib.py build
19
20 vs: 
21         python setup-vs.py build
22
23 lxc: 
24         python setup-lxc.py build
25
26 forward_api_calls: forward_api_calls.c
27         $(CC) -Wall -Os -o $@ $?
28         strip $@
29
30 #################### install
31 install-lib: install-miscell install-startup
32         python setup-lib.py install \
33                 --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
34                 --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
35                 --install-scripts=$(DESTDIR)/$(bindir)
36
37 # might be better in setup.py ?
38 # NOTE: the sliver-initscripts/ and sliver-systemd stuff, being, well, for slivers,
39 # need to ship on all nodes regardless of WITH_INIT and WITH_SYSTEMD that 
40 # impacts how nodemanager itself gets started
41 install-miscell:
42         install -d -m 755 $(DESTDIR)/var/lib/nodemanager
43         install -D -m 444 README $(DESTDIR)/$(datadir)/NodeManager/README
44         install -D -m 644 logrotate/nodemanager $(DESTDIR)/etc/logrotate.d/nodemanager
45         install -D -m 755 sshsh $(DESTDIR)/bin/sshsh
46         mkdir -p $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts
47         rsync -av sliver-initscripts/ $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts/
48         chmod 755 $(DESTDIR)/$(datadir)/NodeManager/sliver-initscripts/
49         mkdir -p $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd
50         rsync -av sliver-systemd/ $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd/
51         chmod 755 $(DESTDIR)/$(datadir)/NodeManager/sliver-systemd/
52
53 # this now is for the startup of nodemanager itself
54 ifneq "$(WITH_SYSTEMD)" ""
55 install-startup: install-systemd
56 endif
57 ifneq "$(WITH_INIT)" ""
58 install-startup: install-init
59 endif
60
61 install-init:
62         mkdir -p $(DESTDIR)$(initdir)
63         chmod 755 initscripts/*
64         rsync -av initscripts/ $(DESTDIR)$(initdir)/
65
66 install-systemd:
67         mkdir -p $(DESTDIR)/$(systemddir)
68         rsync -av systemd/ $(DESTDIR)/$(systemddir)
69
70 install-vs:
71         python setup-vs.py install \
72                 --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
73                 --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
74                 --install-scripts=$(DESTDIR)/$(bindir)
75         install -m 444 README $(DESTDIR)/$(datadir)/NodeManager
76
77 install-lxc:
78         python setup-lxc.py install \
79                 --install-purelib=$(DESTDIR)/$(datadir)/NodeManager \
80                 --install-platlib=$(DESTDIR)/$(datadir)/NodeManager \
81                 --install-scripts=$(DESTDIR)/$(bindir)
82         install -m 444 README $(DESTDIR)/$(datadir)/NodeManager
83
84 #################### clean
85 clean:
86         python setup-lib.py clean
87         python setup-vs.py clean
88         python setup-lxc.py clean
89         rm -f forward_api_calls *.pyc build
90
91 .PHONY: all install clean
92
93 ##########
94 tags:
95         (find . '(' -name '*.py' -o -name '*.c' -o -name '*.spec' ')' ; ls initscripts/*) | xargs etags 
96
97 .PHONY: tags
98
99 ########## sync
100 # for use with the test framework; push local stuff on a test node
101 # howto use: go on testmaster in the build you want to use and just run
102 # $ exp
103 # cut'n paste the result in a terminal in your working dir, e.g. (although all are not required)
104 # $ export BUILD=2013.07.02--lxc18
105 # $ export PLCHOSTLXC=gotan.pl.sophia.inria.fr
106 # $ export GUESTNAME=2013.07.02--lxc18-1-vplc01
107 # $ export GUESTHOSTNAME=vplc01.pl.sophia.inria.fr
108 # $ export KVMHOST=kvm64-6.pl.sophia.inria.fr
109 # $ export NODE=vnode01.pl.sophia.inria.fr
110 # and then just run
111 # $ make sync
112
113 LOCAL_RSYNC_EXCLUDES    := --exclude '*.pyc' 
114 RSYNC_EXCLUDES          := --exclude .git  --exclude .svn --exclude '*~' --exclude TAGS $(LOCAL_RSYNC_EXCLUDES)
115 RSYNC_COND_DRY_RUN      := $(if $(findstring n,$(MAKEFLAGS)),--dry-run,)
116 RSYNC                   := rsync -e "ssh -i $(NODE).key.rsa" -a -v $(RSYNC_COND_DRY_RUN) $(RSYNC_EXCLUDES)
117
118 ifdef NODE
119 NODEURL:=root@$(NODE):/
120 endif
121
122 # this is for lxc only, we need to exclude the vs stuff that otherwise messes up everything on node
123 # keep this in sync with setup-vs.spec
124 LXC_EXCLUDES= --exclude sliver_vs.py --exclude coresched_vs.py
125
126 sync:synclxc
127
128 synclxc: $(NODE).key.rsa
129 ifeq (,$(NODEURL))
130         @echo "sync: You must define NODE on the command line"
131         @echo "  e.g. make sync NODE=vnode01.inria.fr"
132         @exit 1
133 else
134         @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
135         @echo WARNING : this target might not be very reliable - use with care
136         @echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
137         +$(RSYNC) --exclude sshsh $(LXC_EXCLUDES) --delete-excluded ./ $(NODEURL)/usr/share/NodeManager/
138         +$(RSYNC) ./sshsh $(NODEURL)/bin/
139 #       +$(RSYNC) ./initscripts/ $(NODEURL)/etc/init.d/
140         +$(RSYNC) ./systemd/ $(NODEURL)/usr/lib/systemd/system/
141 #       ssh -i $(NODE).key.rsa root@$(NODE) service nm restart
142 endif
143
144 ### fetching the key
145
146 TESTMASTER ?= testmaster.onelab.eu
147
148 ifdef BUILD
149 KEYURL:=root@$(TESTMASTER):$(BUILD)/keys/key_admin.rsa
150 endif
151
152 key: $(NODE).key.rsa
153
154 $(NODE).key.rsa:
155 ifeq (,$(KEYURL))
156         @echo "sync: fetching $@ - You must define TESTMASTER, BUILD and NODE on the command line"
157         @echo "  e.g. make sync TESTMASTER=testmaster.onelab.eu BUILD=2010.01.22--1l-f8-32 NODE=vnode01.inria.fr"
158         @echo "  note that for now all test builds use the same key, so any BUILD would do"
159         @exit 1
160 else
161         @echo "FETCHING key"
162         +scp $(KEYURL) $@
163 endif