mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
13 lines
410 B
Ruby
13 lines
410 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.synced_folder './', '/vagrant',
|
|
type: "rsync",
|
|
owner: 'vyos',
|
|
group: 'users',
|
|
mount_options: ['dmode=775,fmode=775']
|
|
config.ssh.username = "vyos"
|
|
config.ssh.password = "vyos"
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.driver = "kvm"
|
|
end
|
|
end
|