mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 05:11:25 -07:00
Fix typo in Docker module.
This commit is contained in:
parent
9630972c2c
commit
01a28e7d80
1 changed files with 1 additions and 1 deletions
|
@ -1138,7 +1138,7 @@ class DockerManager(object):
|
||||||
|
|
||||||
# LOG_DRIVER
|
# 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'
|
expected_log_driver = self.module.params.get('log_driver') or 'json-file'
|
||||||
actual_log_driver = container['HostConfig']['LogConfig']['Type']
|
actual_log_driver = container['HostConfig']['LogConfig']['Type']
|
||||||
if actual_log_driver != expected_log_driver:
|
if actual_log_driver != expected_log_driver:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue