1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Clarify an error message

This commit is contained in:
Michael DeHaan 2013-03-17 23:32:59 -04:00
parent c7c7a63ee5
commit f2c8df2a93

View file

@ -42,7 +42,7 @@ class ActionModule(object):
dest = options.get('dest', None)
if (source is None and content is None and not 'first_available_file' in inject) or dest is None:
result=dict(failed=True, msg="src or content and dest are required")
result=dict(failed=True, msg="src (or content) and dest are required")
return ReturnData(conn=conn, result=result)
elif (source is not None or 'first_available_file' in inject) and content is not None:
result=dict(failed=True, msg="src and content are mutually exclusive")