From b5fdf3098d80561b976f53871a232810db33b8d2 Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Wed, 27 Feb 2019 11:10:51 +0100 Subject: [PATCH] Fix #9 by adding a wrapper around packer build --- README.md | 2 +- build_vbox.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 build_vbox.sh diff --git a/README.md b/README.md index 7a9d434..53738a7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ it when the VM is running. For example the IP address of your VM is If you want to build an image for VMWare you will need to install it and to use the VMWare builder with the command: - $ packer build -only=vmware-iso misp.json + $./build_vbox.sh You can also launch all builders in parallel. diff --git a/build_vbox.sh b/build_vbox.sh new file mode 100755 index 0000000..9681b3b --- /dev/null +++ b/build_vbox.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +# Fetching latest MISP LICENSE +/usr/bin/wget -q -O /tmp/LICENSE-misp https://raw.githubusercontent.com/MISP/MISP/2.4/LICENSE +packer build -only=virtualbox-iso misp.json