Sha256: 696cd51adef9dae734cf2aee32341b9aea86fed9b248fde251ac3ce9fdd8a6c9
Contents?: true
Size: 463 Bytes
Versions: 14
Compression:
Stored size: 463 Bytes
Contents
Vagrant.configure("2") do |config| config.vm.box = "box" config.vm.synced_folder ".", "/vagrant-smb", type: "smb", smb_username: ENV["VAGRANT_SMB_USERNAME"], smb_password: ENV["VAGARANT_SMB_PASSWORD"] config.vm.synced_folder ".", "/foo", type: "smb", disabled: true config.vm.allow_fstab_modification = true # Guest should persist mounts after reboot config.vm.provision "reboot", type: :shell, inline: "echo goodbye", reboot: true, run: "never" end
Version data entries
14 entries across 5 versions & 1 rubygems