forked from awailly/cis-ubuntu-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
44 lines (38 loc) · 1.11 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.nfs.functional = false
config.vm.provider "virtualbox" do |vb|
vb.memory = 1024
vb.cpus = 1
vb.gui = false
end
config.vm.provider :libvirt do |libvirt|
libvirt.memory = 1024
libvirt.cpus = 1
libvirt.nic_model_type = "virtio"
libvirt.random_hostname = true
end
config.vm.provision "prepare-installation", privileged: true, type: "shell", inline: <<-SHELL
apt-get update
apt-get install -y python-pip python-dev libffi-dev libssl-dev openssh-server
pip install ansible markupsafe
SHELL
config.vm.provision "install", type: "shell", inline: <<-SHELL
mkdir -p /home/vagrant/ansible/roles-ubuntu/roles
cd /home/vagrant/ansible/roles-ubuntu
cp -r /vagrant roles/cis
cat >> playbook.yml << 'EOF'
---
- hosts: 127.0.0.1
connection: local
roles:
- cis
EOF
SHELL
config.vm.provision "run", type: "shell", inline: <<-SHELL
cd /home/vagrant/ansible/roles-ubuntu
ansible-playbook -b -u vagrant -i '127.0.0.1,' playbook.yml
SHELL
end