From 22fd53d74a03c9649c9c5baf5b7961c6a66a3650 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 14 Aug 2016 17:06:33 +0300 Subject: [PATCH] - Added dnsmasq and resolvconf to APT install list (for vagrant-landrush). --- workstation.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/workstation.yml b/workstation.yml index 911c83e..3a77470 100644 --- a/workstation.yml +++ b/workstation.yml @@ -18,6 +18,7 @@ - assert: that: - ansible_pkg_mgr == 'apt' + - name: APT install with_items: - network-manager @@ -25,6 +26,8 @@ - ufw - libdvdcss2 - vagrant + - dnsmasq + - resolvconf apt: name: '{{ item }}' state: present -- GitLab