Merge pull request #7400 from etehtsea/patch-1

Fix env splitting in docker module
This commit is contained in:
James Cammarata 2014-05-14 11:00:32 -05:00
commit ee9964800d

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'))