Allow keystring passed to authorized_key to contain blank lines and comments

pull/5655/head
Scott Gilbert 11 years ago
parent 2c39576e80
commit 0aedd0c0b2

@ -341,7 +341,9 @@ def enforce_state(module, params):
state = params.get("state", "present") state = params.get("state", "present")
key_options = params.get("key_options", None) key_options = params.get("key_options", None)
key = key.split('\n') # extract indivial keys into an array, skipping blank lines and comments
key = [s for s in key.splitlines() if s and not s.startswith('#')]
# check current state -- just get the filename, don't create file # check current state -- just get the filename, don't create file
do_write = False do_write = False

Loading…
Cancel
Save