diff options
Diffstat (limited to 'spec/one_node/Vagrantfile')
| l---------[-rw-r--r--] | spec/one_node/Vagrantfile | 37 |
1 files changed, 1 insertions, 36 deletions
diff --git a/spec/one_node/Vagrantfile b/spec/one_node/Vagrantfile index a218807..2572fa2 100644..120000 --- a/spec/one_node/Vagrantfile +++ b/spec/one_node/Vagrantfile @@ -1,36 +1 @@ -require 'yaml' - -configs = YAML.load_file('config.yaml') - -Vagrant.configure('2') do |config| - config.vm.provider :libvirt do |libvirt| - cpuinfo = File.read('/proc/cpuinfo') - if cpuinfo =~ /vmx|svm/ - libvirt.cpu_mode = 'host-passthrough' - else - libvirt.driver = 'qemu' - libvirt.cpu_mode = 'custom' - libvirt.cpu_model = 'Nehalem' - libvirt.cpu_feature name: 'vmx', policy: 'force' - end - end - configs.keys.each do |host| - config.vm.define host.to_sym do |c| - c.vm.box = 'higebu/vyos' - c.vm.synced_folder './', '/vagrant', - owner: 'vagrant', - group: 'vyattacfg', - mount_options: ['dmode=775,fmode=775'] - c.vm.hostname = host - if !configs[host].nil? && configs[host].key?(:networks) - configs[host][:networks].keys.each do |net| - c.vm.network :private_network, - ip: configs[host][:networks][net], - libvirt__network_name: net, - libvirt__dhcp_enabled: false - end - end - c.vm.provision 'shell', path: "#{host}_script.sh" - end - end -end +../../Vagrantfile
\ No newline at end of file |
