blob: dd39bb495517b166a96a9a3db4f50cdd889a19fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import logging
import Bcfg2.Server.Plugin
logger = logging.getLogger('Packages')
class PackagesConfig(Bcfg2.Server.Plugin.SimpleConfig):
_required = False
def Index(self):
""" Build local data structures """
Bcfg2.Server.Plugin.SimpleConfig.Index(self)
if self.plugin.sources.loaded:
# only reload Packages plugin if sources have been loaded.
# otherwise, this is getting called on server startup, and
# we have to wait until all sources have been indexed
# before we can call Packages.Reload()
self.plugin.Reload()
|