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:
parent
c7c7a63ee5
commit
f2c8df2a93
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue