summaryrefslogtreecommitdiff
path: root/tests/example-provider/Vagrantfile
diff options
context:
space:
mode:
authorVarac <varac@leap.se>2018-03-05 12:13:44 +0100
committerVarac <varac@leap.se>2018-03-05 13:03:24 +0100
commit712f0b0e23c15314ed60f72802e72bb3688d2c8c (patch)
tree4eaf70b3803e423064698d0744166af28dae7c4b /tests/example-provider/Vagrantfile
parent4c6fab10e8d4beffeb50ad4ae0abffbdf4c03a5a (diff)
[vagrant] Use debian/jessie64 as vagrantbox
Resolves: #8909
Diffstat (limited to 'tests/example-provider/Vagrantfile')
-rw-r--r--tests/example-provider/Vagrantfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/example-provider/Vagrantfile b/tests/example-provider/Vagrantfile
index e909e79b..dbd30185 100644
--- a/tests/example-provider/Vagrantfile
+++ b/tests/example-provider/Vagrantfile
@@ -12,7 +12,7 @@ Vagrant.configure("2") do |config|
# Please verify the sha512 sum of the downloaded box before importing it into vagrant !
# see https://leap.se/en/docs/platform/details/development#Verify.vagrantbox.download
# for details
- config.vm.box = "LEAP/jessie"
+ config.vm.box = "debian/jessie64"
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
@@ -31,12 +31,16 @@ Vagrant.configure("2") do |config|
s.inline = "sudo sed -i '/tty/!s/mesg n/tty -s \\&\\& mesg n/' /root/.profile"
end
+ config.vm.provision "shell", path: "vagrant/initialize.sh"
config.vm.provision "puppet" do |puppet|
puppet.manifests_path = "./vagrant"
puppet.module_path = "../../puppet/modules"
puppet.manifest_file = "install-platform.pp"
puppet.options = "--verbose"
puppet.hiera_config_path = "./hiera.yaml"
+ puppet.environment_variables = {
+ :LANG => "en_US.UTF-8"
+ }
end
config.vm.provision "shell", path: "vagrant/configure-leap.sh"