From 127c57059db3990982a47845c47f82a0bd588e59 Mon Sep 17 00:00:00 2001 From: Adar Nimrod Date: Fri, 10 Jun 2016 21:01:21 +0300 Subject: [PATCH] - Allow local bridges access through the firewall. --- desktop.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/desktop.yml b/desktop.yml index d2befa8..9596e22 100644 --- a/desktop.yml +++ b/desktop.yml @@ -12,6 +12,7 @@ - plymouth - network-manager - initramfs-tools + - ufw apt: name: '{{ item }}' state: present @@ -26,6 +27,17 @@ value: interface-name:docker0;interface-name:vboxnet0;interface-name:nspawnbr0:interface-name:lxcbr0 state: present + - name: Allow local bridges access through the firewall + with_items: + - docker0 + - vboxnet0 + - nspawnbr0 + - lxcbr0 + ufw: + direction: in + interface: '{{ item }}' + rule: allow + - name: Configure Plymouth ini_file: dest: /etc/plymouth/plymouthd.conf -- GitLab