Sha256: 587132d8c98c36c5f5963b908ef453aa140c3d019f0db84d33d3d321a948525e
Contents?: true
Size: 455 Bytes
Versions: 5
Compression:
Stored size: 455 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # Provisioning script provision_script = <<SCRIPT #!/bin/bash sudo echo "Hello there" > ~/hi.txt SCRIPT Vagrant.configure("2") do |config| config.vm.box = "dummy" config.vm.provision :shell, :inline => provision_script 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
5 entries across 5 versions & 1 rubygems