From d7e127eb7e39331fdd356b0f82b6d7586ca4e0f4 Mon Sep 17 00:00:00 2001 From: A Holt Date: Mon, 20 Aug 2018 17:21:40 -0400 Subject: [PATCH] Update main.yml --- roles/openvpn/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/openvpn/tasks/main.yml b/roles/openvpn/tasks/main.yml index a0a9b868e..b3e9ff51f 100644 --- a/roles/openvpn/tasks/main.yml +++ b/roles/openvpn/tasks/main.yml @@ -25,11 +25,11 @@ # CLARIF: plus signs (+) in public keys cause duplicate key additions (above) # and failure during removal (below) as "+" has a special meaning as -# interpreted in Python a regexp, as implemented by Ansible's lineinfile module: +# interpreted in a Python regexp, as implemented by Ansible's lineinfile module: # https://docs.python.org/2/library/re.html # WORKAROUND: the tail end of each public key (after the last plus sign) is -# being used (instead of the full key) as as an abbreviated regexp for now. +# being used (instead of the full key) as an abbreviated regexp for now. # A backslash in front of each plus sign (+) would also work. - name: Remove ssh public keys (if openvpn_install is False)