Adding 'export' option to subversion module (to export instead of checkout)

reviewable/pr18780/r1
Baptiste Lafontaine 11 years ago
parent 557ad6a411
commit 7cc911f7ba

@ -70,6 +70,12 @@ options:
description: description:
- Path to svn executable to use. If not supplied, - Path to svn executable to use. If not supplied,
the normal mechanism for resolving binary paths will be used. the normal mechanism for resolving binary paths will be used.
export:
required: false
default: False
version_added: "1.5"
description:
- If True, do export instead of checkout/update.
''' '''
EXAMPLES = ''' EXAMPLES = '''
@ -111,6 +117,10 @@ class Subversion(object):
'''Creates new svn working directory if it does not already exist.''' '''Creates new svn working directory if it does not already exist.'''
self._exec("checkout -r %s '%s' '%s'" % (self.revision, self.repo, self.dest)) self._exec("checkout -r %s '%s' '%s'" % (self.revision, self.repo, self.dest))
def export(self, force=False):
'''Export svn repo to directory'''
self._exec("export -r %s '%s' '%s'" % (self.revision, self.repo, self.dest))
def switch(self): def switch(self):
'''Change working directory's repo.''' '''Change working directory's repo.'''
# switch to ensure we are pointing at correct repo. # switch to ensure we are pointing at correct repo.
@ -163,6 +173,7 @@ def main():
username=dict(required=False), username=dict(required=False),
password=dict(required=False), password=dict(required=False),
executable=dict(default=None), executable=dict(default=None),
export=dict(default=False, required=False),
), ),
supports_check_mode=True supports_check_mode=True
) )
@ -174,6 +185,7 @@ def main():
username = module.params['username'] username = module.params['username']
password = module.params['password'] password = module.params['password']
svn_path = module.params['executable'] or module.get_bin_path('svn', True) svn_path = module.params['executable'] or module.get_bin_path('svn', True)
export = module.params['export']
svn = Subversion(module, dest, repo, revision, username, password, svn_path) svn = Subversion(module, dest, repo, revision, username, password, svn_path)
@ -182,7 +194,10 @@ def main():
local_mods = False local_mods = False
if module.check_mode: if module.check_mode:
module.exit_json(changed=True) module.exit_json(changed=True)
if not export:
svn.checkout() svn.checkout()
else:
svn.export()
elif os.path.exists("%s/.svn" % (dest, )): elif os.path.exists("%s/.svn" % (dest, )):
# Order matters. Need to get local mods before switch to avoid false # Order matters. Need to get local mods before switch to avoid false
# positives. Need to switch before revert to ensure we are reverting to # positives. Need to switch before revert to ensure we are reverting to

Loading…
Cancel
Save