blob: b4abafb0ebbfdb495efa1789caaeebebc14a618a (
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
|
""" Darcs is a version plugin for dealing with Bcfg2 repos stored in the
Darcs VCS. """
from subprocess import Popen, PIPE
import Bcfg2.Server.Plugin
class Darcs(Bcfg2.Server.Plugin.Version):
""" Darcs is a version plugin for dealing with Bcfg2 repos stored
in the Darcs VCS. """
__author__ = 'bcfg-dev@mcs.anl.gov'
__vcs_metadata_path__ = "_darcs"
def __init__(self, core, datastore):
Bcfg2.Server.Plugin.Version.__init__(self, core, datastore)
self.logger.debug("Initialized Darcs plugin with darcs directory %s" %
self.vcs_path)
def get_revision(self):
"""Read Darcs changeset information for the Bcfg2 repository."""
try:
data = Popen("env LC_ALL=C darcs changes",
shell=True,
cwd=self.vcs_root,
stdout=PIPE).stdout.readlines()
revision = data[0].strip('\n')
except:
msg = "Failed to read darcs repository"
self.logger.error(msg)
self.logger.error('Ran command "darcs changes" from directory %s' %
self.vcs_root)
raise Bcfg2.Server.Plugin.PluginExecutionError(msg)
return revision
|