mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-11 08:34:21 -07: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
|
finds hosts that match a list of patterns. Handles negative
|
||||||
matches as well as intersection matches.
|
matches as well as intersection matches.
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
|
if patterns[0].startswith("!"):
|
||||||
|
patterns.insert(0, "all")
|
||||||
|
except IndexError:
|
||||||
|
pass
|
||||||
|
|
||||||
hosts = set()
|
hosts = set()
|
||||||
for p in patterns:
|
for p in patterns:
|
||||||
|
|
|
@ -547,6 +547,27 @@ class LinuxService(Service):
|
||||||
if not self.enable:
|
if not self.enable:
|
||||||
return
|
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:
|
# we change argument depending on real binary used:
|
||||||
# - update-rc.d and systemctl wants enable/disable
|
# - update-rc.d and systemctl wants enable/disable
|
||||||
# - chkconfig wants on/off
|
# - chkconfig wants on/off
|
||||||
|
@ -561,9 +582,7 @@ class LinuxService(Service):
|
||||||
enable_disable = "disable"
|
enable_disable = "disable"
|
||||||
add_delete = "delete"
|
add_delete = "delete"
|
||||||
|
|
||||||
if self.enable_cmd.endswith("update-rc.d"):
|
if self.enable_cmd.endswith("rc-update"):
|
||||||
args = (self.enable_cmd, self.name, enable_disable)
|
|
||||||
elif self.enable_cmd.endswith("rc-update"):
|
|
||||||
args = (self.enable_cmd, add_delete, self.name + " " + self.runlevel)
|
args = (self.enable_cmd, add_delete, self.name + " " + self.runlevel)
|
||||||
elif self.enable_cmd.endswith("systemctl"):
|
elif self.enable_cmd.endswith("systemctl"):
|
||||||
args = (self.enable_cmd, enable_disable, self.name + ".service")
|
args = (self.enable_cmd, enable_disable, self.name + ".service")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue