This commit updates vagrant-spec to run with windows platforms. It also adds a readme to give more information on how to run the vagrant-spec suite.
14 lines
221 B
Bash
14 lines
221 B
Bash
#!/bin/bash
|
|
set -xe
|
|
|
|
apt-get update -q
|
|
apt-get install -qy linux-headers-$(uname -r)
|
|
apt-get install -qy virtualbox
|
|
|
|
pushd /vagrant
|
|
|
|
dpkg -i ./pkg/dist/vagrant_*_x86_64.deb
|
|
vagrant plugin install ./vagrant-spec.gem
|
|
|
|
popd
|