mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge remote branch 'origin' into devel
This commit is contained in:
commit
be5386f945
2 changed files with 27 additions and 3 deletions
|
@ -136,6 +136,11 @@ class Inventory(object):
|
|||
finds hosts that match a list of patterns. Handles negative
|
||||
matches as well as intersection matches.
|
||||
"""
|
||||
try:
|
||||
if patterns[0].startswith("!"):
|
||||
patterns.insert(0, "all")
|
||||
except IndexError:
|
||||
pass
|
||||
|
||||
hosts = set()
|
||||
for p in patterns:
|
||||
|
|
|
@ -547,6 +547,27 @@ class LinuxService(Service):
|
|||
if not self.enable:
|
||||
return
|
||||
|
||||
if self.enable_cmd.endswith("update-rc.d"):
|
||||
if self.enable:
|
||||
action = 'enable'
|
||||
else:
|
||||
action = 'disable'
|
||||
(rc, out, err) = self.execute_command("%s -n %s %s" \
|
||||
% (self.enable_cmd, self.name, action))
|
||||
self.changed = False
|
||||
for line in out.splitlines():
|
||||
if line.startswith('rename'):
|
||||
self.changed = True
|
||||
break
|
||||
|
||||
if self.module.check_mode:
|
||||
self.module.exit_json(changed=changed)
|
||||
|
||||
if not self.changed:
|
||||
return
|
||||
|
||||
return self.execute_command("%s %s %s" % (self.enable_cmd, self.name, action))
|
||||
|
||||
# we change argument depending on real binary used:
|
||||
# - update-rc.d and systemctl wants enable/disable
|
||||
# - chkconfig wants on/off
|
||||
|
@ -561,9 +582,7 @@ class LinuxService(Service):
|
|||
enable_disable = "disable"
|
||||
add_delete = "delete"
|
||||
|
||||
if self.enable_cmd.endswith("update-rc.d"):
|
||||
args = (self.enable_cmd, self.name, enable_disable)
|
||||
elif self.enable_cmd.endswith("rc-update"):
|
||||
if self.enable_cmd.endswith("rc-update"):
|
||||
args = (self.enable_cmd, add_delete, self.name + " " + self.runlevel)
|
||||
elif self.enable_cmd.endswith("systemctl"):
|
||||
args = (self.enable_cmd, enable_disable, self.name + ".service")
|
||||
|
|
Loading…
Reference in a new issue