diff --git a/development/setup-lxc-dev-box b/development/setup-lxc-dev-box deleted file mode 100755 index 078fbe3..0000000 --- a/development/setup-lxc-dev-box +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash - -set -e - -# Fresh start -bundle exec vagrant-lxc destroy - -# Skip provisioning as we need to apt-get update first -bundle exec vagrant-lxc up --no-provision --provider=lxc - -# apt-get and install puppet so we can provision the dev machine -bundle exec vagrant-lxc provision --provision-with=shell - -# Actual setup -bundle exec vagrant-lxc provision --provision-with=puppet - -# Reload the container just to ensure it can boot properly after provisioning -bundle exec vagrant-lxc reload