Rewrite autocluster in Python
[tridge/autocluster.git] / base / all / root / scripts / cluster_configure / plugins / package.py
1 # Configure clustered Samba nodes
2
3 # Module for handling package configuration.
4
5 # Copyright (C) Martin Schwenke 2010
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
19
20 import util
21
22 _package_prefix = "package"
23
24 def names(config):
25     """Given a config, return the names of all packages."""
26
27     return util.names(config, _package_prefix)
28
29 def get(config, package, key):
30     """Given a config, return the the value of specify key
31         for the package."""
32
33     return config.get(_package_prefix + ":" + package, key)
34
35 def retrieve(config, package):
36     """Given a config, retrieve all the configuration information
37     about package.  The result is a dictionary representing the
38     package's configuration file section."""
39
40     return util.retrieve(config, _package_prefix + ":" + package)
41