Fix typo in Docker module.

This commit is contained in:
Ryan Walls 2015-06-02 00:09:01 -06:00 committed by Matt Clay
parent 9630972c2c
commit 01a28e7d80

View file

@ -1138,7 +1138,7 @@ class DockerManager(object):
# LOG_DRIVER
if self.ensure_capability('log_driver', false) :
if self.ensure_capability('log_driver', False) :
expected_log_driver = self.module.params.get('log_driver') or 'json-file'
actual_log_driver = container['HostConfig']['LogConfig']['Type']
if actual_log_driver != expected_log_driver: