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

Do not run systemctl daemon-reload in check mode

This commit is contained in:
Strahinja Kustudic 2017-10-06 00:16:11 +02:00 committed by Brian Coca
parent fad3a4dc83
commit 7417282d37

View file

@ -322,7 +322,7 @@ def main():
module.fail_json(msg="name is also required when specifying %s" % requires)
# Run daemon-reload first, if requested
if module.params['daemon_reload']:
if module.params['daemon_reload'] and not module.check_mode:
(rc, out, err) = module.run_command("%s daemon-reload" % (systemctl))
if rc != 0:
module.fail_json(msg='failure %d during daemon-reload: %s' % (rc, err))