Allow keystring passed to authorized_key to contain blank lines and comments

This commit is contained in:
Scott Gilbert 2014-01-16 12:14:37 -06:00
parent a9c5aa8f78
commit df72690e6c

View file

@ -341,7 +341,9 @@ def enforce_state(module, params):
state = params.get("state", "present")
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
do_write = False