Merge pull request #19537 from rallytime/bp-19344

Backport #19344 to 2014.7
This commit is contained in:
Thomas S Hatch 2015-01-08 16:44:35 -07:00
commit 081c96c43f

View File

@ -212,14 +212,14 @@ def export(name,
ret, ret,
('{0} doesn\'t exist and is set to be checked out.').format(target)) ('{0} doesn\'t exist and is set to be checked out.').format(target))
svn_cmd = 'svn.list' svn_cmd = 'svn.list'
opts += ('-r', 'HEAD') rev = 'HEAD'
out = __salt__[svn_cmd](cwd, target, user, username, password, *opts) out = __salt__[svn_cmd](cwd, target, user, username, password, *opts)
return _neutral_test( return _neutral_test(
ret, ret,
('{0}').format(out)) ('{0}').format(out))
if rev: if not rev:
opts += ('-r', str(rev)) rev = 'HEAD'
if force: if force:
opts += ('--force',) opts += ('--force',)
@ -230,7 +230,7 @@ def export(name,
if trust: if trust:
opts += ('--trust-server-cert',) opts += ('--trust-server-cert',)
out = __salt__[svn_cmd](cwd, name, basename, user, username, password, *opts) out = __salt__[svn_cmd](cwd, name, basename, user, username, password, rev, *opts)
ret['changes'] = name + ' was Exported to ' + target ret['changes'] = name + ' was Exported to ' + target
return ret return ret