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)