1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix env splitting in docker module

ENV variable value could contain '=' (for example mysql://host/db?pool=10)
This commit is contained in:
Konstantin Shabanov 2014-05-14 18:11:43 +04:00
parent 19dbff916f
commit ad9225895b

View file

@ -384,7 +384,7 @@ class DockerManager:
self.env = None
if self.module.params.get('env'):
self.env = dict(map(lambda x: x.split("="), self.module.params.get('env')))
self.env = dict(map(lambda x: x.split("=", 1), self.module.params.get('env')))
# connect to docker server
docker_url = urlparse(module.params.get('docker_url'))