changed salt call to modules/svn.py svn.export function, added revision field to function call argument list

This commit is contained in:
robert.fach 2015-01-05 16:50:24 +01:00
parent 0452b43af6
commit 4cb4c7d6e0

View File

@ -213,14 +213,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))
rev = 'HEAD'
if force:
opts += ('--force',)
@ -231,7 +231,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