mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Merge pull request #19537 from rallytime/bp-19344
Backport #19344 to 2014.7
This commit is contained in:
commit
081c96c43f
@ -212,14 +212,14 @@ def export(name,
|
||||
ret,
|
||||
('{0} doesn\'t exist and is set to be checked out.').format(target))
|
||||
svn_cmd = 'svn.list'
|
||||
opts += ('-r', 'HEAD')
|
||||
rev = 'HEAD'
|
||||
out = __salt__[svn_cmd](cwd, target, user, username, password, *opts)
|
||||
return _neutral_test(
|
||||
ret,
|
||||
('{0}').format(out))
|
||||
|
||||
if rev:
|
||||
opts += ('-r', str(rev))
|
||||
if not rev:
|
||||
rev = 'HEAD'
|
||||
|
||||
if force:
|
||||
opts += ('--force',)
|
||||
@ -230,7 +230,7 @@ def export(name,
|
||||
if trust:
|
||||
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
|
||||
|
||||
return ret
|
||||
|
Loading…
Reference in New Issue
Block a user