From 54c5b0cae08cff3edb6218f9fa2c22e5fb75b3e6 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 15 Oct 2019 07:58:47 +0100 Subject: [PATCH] Disable IPv6 Privacy as it causes some issues --- .../roles/linux_desktop/tasks/config.yaml | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.ansible/roles/linux_desktop/tasks/config.yaml b/.ansible/roles/linux_desktop/tasks/config.yaml index b9ac558..75aea5c 100644 --- a/.ansible/roles/linux_desktop/tasks/config.yaml +++ b/.ansible/roles/linux_desktop/tasks/config.yaml @@ -17,27 +17,27 @@ state: restarted become: true -- name: 'IPv6: Privacy' - tags: - - config - - ipv6 - block: - - name: 'IPv6: Privacy: Temporary addressing defaults' - lineinfile: - path: '/etc/ufw/sysctl.conf' - state: present - regexp: "net/ipv6/conf/{{ item }}/use_tempaddr" - line: "net/ipv6/conf/{{ item }}/use_tempaddr=2" - loop: ['default', 'all'] - become: true +# - name: 'IPv6: Privacy' +# tags: +# - config +# - ipv6 +# block: +# - name: 'IPv6: Privacy: Temporary addressing defaults' +# lineinfile: +# path: '/etc/ufw/sysctl.conf' +# state: present +# regexp: "net/ipv6/conf/{{ item }}/use_tempaddr" +# line: "net/ipv6/conf/{{ item }}/use_tempaddr=2" +# loop: ['default', 'all'] +# become: true - - name: 'IPv6: Privacy: Detect interfaces' - shell: 'nmcli -t connection show | cut -f2 -d:' - register: nmcli_connections +# - name: 'IPv6: Privacy: Detect interfaces' +# shell: 'nmcli -t connection show | cut -f2 -d:' +# register: nmcli_connections - - name: 'IPv6: Privacy: Network Manager enforcement' - command: "nmcli connection modify uuid {{ item }} ipv6.ip6-privacy 2" - loop: "{{ nmcli_connections.stdout_lines }}" +# - name: 'IPv6: Privacy: Network Manager enforcement' +# command: "nmcli connection modify uuid {{ item }} ipv6.ip6-privacy 2" +# loop: "{{ nmcli_connections.stdout_lines }}" - name: 'Wireguard' tags: