ansible-role-samba/tests/Vagrantfile

18 lines
349 B
Ruby
Raw Normal View History

# vi: set ft=ruby
require 'rbconfig'
ROLE_NAME = 'samba'
HOST_NAME = 'test' + ROLE_NAME
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'centos70-nocm'
config.vm.define HOST_NAME do |node|
node.vm.provision 'ansible' do |ansible|
ansible.playbook = 'test.yml'
end
end
end