From d62cdc67cf36cc4df87608cf2b7b251d14ce9a56 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 11 Jan 2020 22:05:09 -0500 Subject: [PATCH] Revert to "{{ item.value }}" in 2-common/tasks/xo.yml --- roles/2-common/tasks/xo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/2-common/tasks/xo.yml b/roles/2-common/tasks/xo.yml index 8158e6c17..299f3d0db 100644 --- a/roles/2-common/tasks/xo.yml +++ b/roles/2-common/tasks/xo.yml @@ -60,9 +60,9 @@ dest: /etc/NetworkManager/system-connections/"Sugar Modem Connection" section: ppp option: "{{ item.option }}" - value: "{{ item.value | string }}" + value: "{{ item.value }}" # "{{ item.value | string }}" not nec, as they're already strings. backup: yes - mode: 0600 + mode: '0600' with_items: - { option: 'lcp-echo-failure', value: '5' } - { option: 'lcp-echo-interval', value: '30' }