Bug fixed about container creation with parameters. Minor typos fixed: tab vs space
[osm/devops.git] / jenkins / common / container
index d959f8f..a43bae9 100644 (file)
@@ -42,7 +42,7 @@ create_container() {
        container=$2
        shift 2
        DEBUG "lxc launch $image $container $*"
-       lxc launch "$image" "$container" "$*"
+       lxc launch "$image" "$container" $*
 }
 
 container_exec() { 
@@ -51,6 +51,7 @@ container_exec() {
        DEBUG "exec in $container \"$*\""
        lxc exec "$container" -- $*
 }
+
 container_exec_stderr() { 
        container="$1"
        shift