Merge pull request #11 from gallypette/fixlicence

Fix #9 by adding a wrapper around packer build
pull/14/head
Steve Clement 2019-03-07 21:31:20 +06:00 committed by GitHub
commit e6cebd3425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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