Sha256: d515ae1835813f801619e09dfe03a781ae45eadfaf08d571b5bdf70c3d7b767b
Contents?: true
Size: 520 Bytes
Versions: 3
Compression:
Stored size: 520 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # Provisioning script provision_script = <<SCRIPT #!/bin/bash echo "Hello there" > ~/hi.txt SCRIPT Vagrant.configure("2") do |config| config.vm.box = "dummy" # vagrant-vmpooler already assumes you are root config.vm.provision :shell, :inline => provision_script, privileged: false config.vm.provider :vmpooler do |vmpooler| vmpooler.os = "centos-7-x86_64" #vmpooler.os = "ubuntu-1604-x86_64" vmpooler.ttl = 24 vmpooler.password = "Qu@lity!" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-vmpooler-0.1.5 | example_box/Vagrantfile |
vagrant-vmpooler-0.1.4 | example_box/Vagrantfile |
vagrant-vmpooler-0.1.2 | example_box/Vagrantfile |