Fix #9 by adding a wrapper around packer build

pull/11/head
Jean-Louis Huynen 2019-02-27 11:10:51 +01:00
parent 4d45001359
commit b5fdf3098d
No known key found for this signature in database
GPG Key ID: 4CDEBABACE9A5DC9
2 changed files with 5 additions and 1 deletions

View File

@ -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.

4
build_vbox.sh Executable file
View File

@ -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