Revision dc101ecc

b/Makefile.am
19 19

  
20 20
hypervisordir = $(pkgpythondir)/hypervisor
21 21
httpdir = $(pkgpythondir)/http
22
masterddir = $(pkgpythondir)/masterd
22 23
confddir = $(pkgpythondir)/confd
23 24
rapidir = $(pkgpythondir)/rapi
24 25
toolsdir = $(pkglibdir)/tools
......
39 40
	lib/confd \
40 41
	lib/http \
41 42
	lib/hypervisor \
43
	lib/masterd \
42 44
	lib/rapi \
43 45
	man \
44 46
	qa \
......
140 142
	lib/confd/querylib.py \
141 143
	lib/confd/server.py
142 144

  
145
masterd_PYTHON = \
146
	lib/masterd/__init__.py
147

  
143 148
docrst = \
144 149
	doc/admin.rst \
145 150
	doc/design-2.0.rst \
......
378 383
	$(rapi_PYTHON) \
379 384
	$(http_PYTHON) \
380 385
	$(confd_PYTHON) \
386
	$(masterd_PYTHON) \
381 387
	$(noinst_PYTHON)
382 388

  
383 389
srclink_files = \
b/lib/masterd/__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
"""Masterd-related classes and functions.
25

  
26
"""

Also available in: Unified diff