diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-20 18:27:46 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-20 18:27:46 -0500 |
commit | 828e641e02a05896c53c005ef3c82db7f3797bb7 (patch) | |
tree | 50fd49ea8f5f110d46697b39bab86de4b9a2d4a0 /Vagrantfile | |
parent | ad785f692cc5a35a1357432594fbe997b6e2bbe7 (diff) | |
download | haskell-828e641e02a05896c53c005ef3c82db7f3797bb7.tar.gz |
vagrant: move files around
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Vagrantfile b/Vagrantfile index 9c116011a8..9f6f1a0ab6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,27 +4,27 @@ MACHINES = { "ubuntu1204-i386" => { :box => "chef/ubuntu-12.04-i386", - :provision => "vagrant/bootstrap-deb.sh" + :provision => "utils/vagrant/bootstrap-deb.sh" }, "ubuntu1204-amd64" => { :box => "chef/ubuntu-12.04", - :provision => "vagrant/bootstrap-deb.sh" + :provision => "utils/vagrant/bootstrap-deb.sh" }, "centos65-i386" => { :box => "chef/centos-6.5-i386", - :provision => "vagrant/bootstrap-rhel.sh" + :provision => "utils/vagrant/bootstrap-rhel.sh" }, "centos65-amd64" => { :box => "chef/centos-6.5", - :provision => "vagrant/bootstrap-rhel.sh" + :provision => "utils/vagrant/bootstrap-rhel.sh" }, "debian74-i386" => { :box => "chef/debian-7.4-i386", - :provision => "vagrant/bootstrap-deb.sh" + :provision => "utils/vagrant/bootstrap-deb.sh" }, "debian74-amd64" => { :box => "chef/debian-7.4", - :provision => "vagrant/bootstrap-deb.sh" + :provision => "utils/vagrant/bootstrap-deb.sh" } } |