Ensure string types (#42362)

* actually enforce string types

* unquote after its text

* fixed incorrect template type

* fixing string showed error in template typing
pull/42576/merge
Brian Coca 6 years ago committed by GitHub
parent 381263ad99
commit 4a7940c562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -99,7 +99,10 @@ def ensure_type(value, value_type, origin=None):
value = value.split(',')
value = [resolve_path(x, basedir=basedir) for x in value]
# defaults to string types
elif value_type in ('str', 'string'):
value = unquote(to_text(value, errors='surrogate_or_strict'))
# defaults to string type
elif isinstance(value, string_types):
value = unquote(value)

@ -89,7 +89,7 @@ class ActionModule(ActionBase):
for b_type in ('force', 'follow', 'trim_blocks'):
value = locals()[b_type]
value = ensure_type(value, 'string')
value = ensure_type(value, 'boolean')
if value is not None and not isinstance(value, bool):
raise AnsibleActionFail("%s is expected to be a boolean, but got %s instead" % (b_type, type(value)))
locals()[b_type] = value

Loading…
Cancel
Save