mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
Added stub implementation of filters
This commit is contained in:
parent
bfed87df80
commit
993bb5c6f1
2 changed files with 11 additions and 3 deletions
|
@ -117,9 +117,11 @@ def json_loads(data):
|
|||
|
||||
return json.loads(data)
|
||||
|
||||
def parse_json(data):
|
||||
def parse_json(raw_data):
|
||||
''' this version for module return data only '''
|
||||
|
||||
data = filter_leading_garbage(raw_data)
|
||||
|
||||
try:
|
||||
return json.loads(data)
|
||||
except:
|
||||
|
@ -409,3 +411,9 @@ def do_encrypt(result, encrypt, salt_size=None, salt=None):
|
|||
|
||||
return result
|
||||
|
||||
def last_non_blank_line(lines):
|
||||
return lines
|
||||
|
||||
def filter_leading_garbage(lines):
|
||||
return lines
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue