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

Makes pervious lineinfile fix more explicit

This commit is contained in:
Marcus McCurdy 2013-09-02 16:16:45 -04:00
parent 64fa95ca11
commit 46ff02bc57

View file

@ -305,7 +305,7 @@ def main():
module.fail_json(rc=256, msg='Destination %s is a directory !' % dest)
if params['state'] == 'present':
if params.get('line') is None:
if params.get('line', None) is None:
module.fail_json(msg='line= is required with state=present')
# Deal with the insertafter default value manually, to avoid errors