Revision 899c4d2c

b/Makefile.am
23 23
masterddir = $(pkgpythondir)/masterd
24 24
confddir = $(pkgpythondir)/confd
25 25
rapidir = $(pkgpythondir)/rapi
26
serverdir = $(pkgpythondir)/server
26 27
watcherdir = $(pkgpythondir)/watcher
27 28
impexpddir = $(pkgpythondir)/impexpd
28 29
toolsdir = $(pkglibdir)/tools
......
48 49
	lib/impexpd \
49 50
	lib/masterd \
50 51
	lib/rapi \
52
	lib/server \
51 53
	lib/watcher \
52 54
	man \
53 55
	qa \
......
193 195
watcher_PYTHON = \
194 196
	lib/watcher/__init__.py
195 197

  
198
server_PYTHON = \
199
	lib/server/__init__.py
200

  
196 201
docrst = \
197 202
	doc/admin.rst \
198 203
	doc/design-2.0.rst \
......
469 474
	$(client_PYTHON) \
470 475
	$(hypervisor_PYTHON) \
471 476
	$(rapi_PYTHON) \
477
	$(server_PYTHON) \
472 478
	$(http_PYTHON) \
473 479
	$(confd_PYTHON) \
474 480
	$(masterd_PYTHON) \
......
640 646
	} > $@
641 647

  
642 648
# Using deferred evaluation
649
daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
643 650
daemons/ganeti-watcher: MODULE = ganeti.watcher
644 651
scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
645 652

  
b/lib/server/__init__.py
1
#
2
#
3

  
4
# Copyright (C) 2010 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

  
21

  
22
"""Empty file for package definition.
23

  
24
"""

Also available in: Unified diff