blob: 6165ac651005ccd84c83efa4755ac6adeb1d32c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
""" The Fossil plugin provides a revision interface for Bcfg2 repos
using fossil."""
from subprocess import Popen, PIPE
import Bcfg2.Server.Plugin
class Fossil(Bcfg2.Server.Plugin.Version):
""" The Fossil plugin provides a revision interface for Bcfg2
repos using fossil. """
__author__ = 'bcfg-dev@mcs.anl.gov'
__vcs_metadata_path__ = "_FOSSIL_"
def __init__(self, core, datastore):
Bcfg2.Server.Plugin.Version.__init__(self, core, datastore)
self.logger.debug("Initialized Fossil plugin with fossil directory %s"
% self.vcs_path)
def get_revision(self):
"""Read fossil revision information for the Bcfg2 repository."""
try:
data = Popen("env LC_ALL=C fossil info",
shell=True,
cwd=self.vcs_root,
stdout=PIPE).stdout.readlines()
revline = [line.split(': ')[1].strip() for line in data
if line.split(': ')[0].strip() == 'checkout'][-1]
return revline.split(' ')[0]
except IndexError:
msg = "Failed to read fossil info"
self.logger.error(msg)
self.logger.error('Ran command "fossil info" from directory "%s"' %
self.vcs_root)
raise Bcfg2.Server.Plugin.PluginExecutionError(msg)
|