Merge pull request #42993 from pabloh007/fix-docker-save-push

Fixes ignored push flag for docker.push module issue #42992
This commit is contained in:
Nicole Thomas 2017-08-17 14:50:36 -04:00 committed by GitHub
commit 160001120b

View file

@ -3949,7 +3949,7 @@ def save(name,
ret['Size_Human'] = _size_fmt(ret['Size'])
# Process push
if kwargs.get(push, False):
if kwargs.get('push', False):
ret['Push'] = __salt__['cp.push'](path)
return ret