diff options
| author | Daniil Baturin <daniil@baturin.org> | 2018-06-23 04:37:36 +0200 |
|---|---|---|
| committer | Daniil Baturin <daniil@baturin.org> | 2018-06-23 04:37:36 +0200 |
| commit | 9113afff3a538a6e9a7f788189028778aa75fe1f (patch) | |
| tree | 644be7e1698812eec85adaa6884643f2a775b7e6 /scripts/Vagrantfile | |
| parent | 2268a65ba8edf92400ea185a36e784365de2e853 (diff) | |
| parent | 85bc557f4c458c08b096abfd5100cc324a2a2ee0 (diff) | |
| download | vyos-build-9113afff3a538a6e9a7f788189028778aa75fe1f.tar.gz vyos-build-9113afff3a538a6e9a7f788189028778aa75fe1f.zip | |
Merge branch 'current'
Diffstat (limited to 'scripts/Vagrantfile')
| -rw-r--r-- | scripts/Vagrantfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/Vagrantfile b/scripts/Vagrantfile new file mode 100644 index 00000000..7c89422d --- /dev/null +++ b/scripts/Vagrantfile @@ -0,0 +1,12 @@ +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 |
