mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 02:33:09 +00:00
systemd: return an error when systemctl command isn't available
This commit is contained in:
committed by
Brian Coca
parent
703d6cb02f
commit
fb8aa5637a
@@ -334,6 +334,9 @@ def main():
|
||||
# Check for loading error
|
||||
if is_systemd and 'LoadError' in result['status']:
|
||||
module.fail_json(msg="Error loading unit file '%s': %s" % (unit, result['status']['LoadError']))
|
||||
else:
|
||||
# Check for systemctl command
|
||||
module.run_command(systemctl, check_rc=True)
|
||||
|
||||
# Does service exist?
|
||||
found = is_systemd or is_initd
|
||||
|
||||
Reference in New Issue
Block a user