diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-05-03 16:16:30 -0400 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-05-03 16:16:30 -0400 |
commit | 4aca8a896e73df7736c625021f99309328661e62 (patch) | |
tree | 525cbfa9beb03aa90b0cd3cfea0f657189c136d8 /packer/templates | |
parent | 03fff549593ba31ea67a874bed686b59c768376a (diff) |
Initial coala delint (packer)
Initial coala delint for packer
Issue: CIMAN-2
Change-Id: I2ccd6ee569d6cbe4bcc842a1228ca6b6375141f6
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Diffstat (limited to 'packer/templates')
-rw-r--r-- | packer/templates/basebuild.json | 5 | ||||
-rw-r--r-- | packer/templates/docker.json | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/packer/templates/basebuild.json b/packer/templates/basebuild.json index 426f290af..ff84a72d6 100644 --- a/packer/templates/basebuild.json +++ b/packer/templates/basebuild.json @@ -4,7 +4,6 @@ "stack_user": null, "stack_pass": null, "stack_network": null, - "base_image": null, "cloud_user": null, "distro": null, @@ -32,7 +31,9 @@ "provisioners": [ { "type": "shell", - "inline": ["mkdir -p /tmp/packer"] + "inline": [ + "mkdir -p /tmp/packer" + ] }, { "type": "file", diff --git a/packer/templates/docker.json b/packer/templates/docker.json index 5418c4b02..1c8d3ec56 100644 --- a/packer/templates/docker.json +++ b/packer/templates/docker.json @@ -4,7 +4,6 @@ "stack_user": null, "stack_pass": null, "stack_network": null, - "base_image": null, "cloud_user": null, "distro": null, @@ -32,7 +31,9 @@ "provisioners": [ { "type": "shell", - "inline": ["mkdir -p /tmp/packer"] + "inline": [ + "mkdir -p /tmp/packer" + ] }, { "type": "file", |