Merge pull request #43027 from pabloh007/fix-docker-save-push-2016-11

Fixes ignore push flag for docker.push module issue #42992
This commit is contained in:
Nicole Thomas 2017-08-17 15:55:37 -04:00 committed by GitHub
commit a88386ad44

View file

@ -4403,7 +4403,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