ansible-sshd/Vagrantfile

38 lines
953 B
Ruby
Raw Normal View History

# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2017-05-04 16:03:19 +02:00
config.vm.synced_folder ".", "/vagrant", type: "nfs"
2017-05-04 14:58:46 +02:00
config.vm.define "ubuntu" do |ubuntu|
ubuntu.vm.box = "boxcutter/ubuntu1604"
2017-05-04 16:03:19 +02:00
# ubuntu.vm.provision "shell", inline: <<-SHELL
# sudo add-apt-repository -y ppa:ansible/ansible
# sudo apt-get update -qq
# sudo apt-get -qq install ansible
# SHELL
end
2017-05-04 16:03:19 +02:00
config.vm.define "centos7" do |centos|
centos.vm.box = "centos/7"
2017-05-04 14:58:46 +02:00
2017-05-04 16:03:19 +02:00
centos.vm.provision "shell", inline: <<-SHELL
sudo yum install -y libselinux-python
SHELL
end
2017-05-04 14:58:46 +02:00
config.vm.provision "shell", inline: <<-SHELL
2017-05-04 16:03:19 +02:00
test -e /vagrant/tests/roles/ansible-sshd || ln -s /vagrant /vagrant/tests/roles/ansible-sshd
SHELL
config.vm.provision "ansible_local" do |ansible|
2017-05-04 14:58:46 +02:00
# ansible.config_file = "tests/ansible.cfg"
ansible.playbook = "tests/test.yml"
ansible.install = true
end
end