From 6880851c1d59b36634d292cfda04eb01a46d2dda Mon Sep 17 00:00:00 2001 From: Chris Jansen Date: Fri, 28 Mar 2014 11:49:29 +0000 Subject: [PATCH] Fix host argument, should be hostname --- providers/container.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/container.rb b/providers/container.rb index 9875d17fa1..b5b08d02b1 100644 --- a/providers/container.rb +++ b/providers/container.rb @@ -281,7 +281,7 @@ def run 'env' => Array(new_resource.env), 'entrypoint' => new_resource.entrypoint, 'expose' => Array(new_resource.expose), - 'host' => new_resource.hostname, + 'hostname' => new_resource.hostname, 'interactive' => new_resource.stdin, 'link' => Array(new_resource.link), 'lxc-conf' => Array(new_resource.lxc_conf),