File: shell_provision_Vagrantfile

package info (click to toggle)
python-vagrant 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: python: 1,157; sh: 17; makefile: 5
file content (6 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
Vagrant.configure("2") do |config|
  config.vbguest.auto_update = false if Vagrant.has_plugin?("vagrant-vbguest")
  config.vm.box = "generic/alpine315"
  # test v.provision()
  config.vm.provision :shell, :inline => "echo 'foo' > /home/vagrant/python_vagrant_test_file"
end