mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix handling of list=status such that it will actually work in absense of the state command, to
make it useful from /usr/bin/ansible and the API. Also some minor style fixes.
This commit is contained in:
parent
ea296e9edb
commit
b56efa7809
1 changed files with 85 additions and 55 deletions
140
library/service
140
library/service
|
@ -25,18 +25,19 @@ import sys
|
||||||
import shlex
|
import shlex
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
# TODO: switch to fail_json and other helper functions
|
||||||
|
# like other modules are using
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
SERVICE = '/sbin/service'
|
SERVICE = '/sbin/service'
|
||||||
|
|
||||||
def _run(cmd):
|
def _run(cmd):
|
||||||
''' :Return: A tuple of ``(returncode, stdout, stderr)`` resulting from executing
|
# returns (rc, stdout, stderr) from shell command
|
||||||
`cmd` with the shell. '''
|
|
||||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
|
||||||
stdout, stderr = process.communicate()
|
stdout, stderr = process.communicate()
|
||||||
return (process.returncode, stdout, stderr)
|
return (process.returncode, stdout, stderr)
|
||||||
|
|
||||||
|
|
||||||
argfile = sys.argv[1]
|
argfile = sys.argv[1]
|
||||||
args = open(argfile, 'r').read()
|
args = open(argfile, 'r').read()
|
||||||
items = shlex.split(args)
|
items = shlex.split(args)
|
||||||
|
@ -48,84 +49,113 @@ if not len(items):
|
||||||
params = {}
|
params = {}
|
||||||
for arg in items:
|
for arg in items:
|
||||||
if "=" not in arg:
|
if "=" not in arg:
|
||||||
print json.dumps(dict(failed=True, msg='expected arguments of the form name=value'))
|
print json.dumps(dict(failed=True, msg='expected key=value format arguments'))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
(name, value) = arg.split("=")
|
(name, value) = arg.split("=")
|
||||||
params[name] = value
|
params[name] = value
|
||||||
|
|
||||||
name = params['name']
|
name = params.get('name', None)
|
||||||
state = params.get('state','unknown')
|
|
||||||
list_ = params.get('list')
|
if name is None:
|
||||||
|
print json.dumps(dict(failed=True, msg='missing name'))
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
state = params.get('state', None)
|
||||||
|
list_items = params.get('list', None)
|
||||||
|
|
||||||
# running and started are the same
|
# running and started are the same
|
||||||
if state not in [ 'running', 'started', 'stopped', 'restarted' ]:
|
if state and state not in [ 'running', 'started', 'stopped', 'restarted' ]:
|
||||||
print json.dumps(dict(failed=True, msg='invalid state'))
|
print json.dumps(dict(failed=True, msg='invalid value for state'))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if list_ and list_ not in ('status',):
|
if list_items and list_items not in [ 'status' ]:
|
||||||
print json.dumps(dict(failed=True, msg='invalid argument to list'))
|
print json.dumps(dict(failed=True, msg='invalid value for list'))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# get service status
|
# get service status
|
||||||
|
|
||||||
rc, stdout, stderr = _run("%s %s status" % (SERVICE, name))
|
rc, status_stdout, status_stderr = _run("%s %s status" % (SERVICE, name))
|
||||||
|
status = status_stdout + status_stderr
|
||||||
|
|
||||||
# ===========================================
|
|
||||||
# determine if we are going to change anything
|
|
||||||
|
|
||||||
running = False
|
running = False
|
||||||
if stdout.find("not running") != -1:
|
if status_stdout.find("not running") != -1:
|
||||||
running = False
|
running = False
|
||||||
elif stdout.find("running") != -1:
|
elif status_stdout.find("running") != -1:
|
||||||
running = True
|
running = True
|
||||||
elif name == 'iptables' and stdout.find("ACCEPT") != -1:
|
elif name == 'iptables' and status_stdout.find("ACCEPT") != -1:
|
||||||
# iptables status command output is lame
|
# iptables status command output is lame
|
||||||
# TODO: lookup if we can use a return code for this instead?
|
# TODO: lookup if we can use a return code for this instead?
|
||||||
running = True
|
running = True
|
||||||
|
|
||||||
changed = False
|
|
||||||
if not running and state == "started":
|
|
||||||
changed = True
|
|
||||||
elif running and state == "stopped":
|
|
||||||
changed = True
|
|
||||||
elif state == "restarted":
|
|
||||||
changed = True
|
|
||||||
|
|
||||||
# ===========================================
|
if state:
|
||||||
# run change commands if we need to
|
|
||||||
|
# a state change command has been requested
|
||||||
|
|
||||||
|
# ===========================================
|
||||||
|
# determine if we are going to change anything
|
||||||
|
|
||||||
|
changed = False
|
||||||
|
if not running and state == "started":
|
||||||
|
changed = True
|
||||||
|
elif running and state == "stopped":
|
||||||
|
changed = True
|
||||||
|
elif state == "restarted":
|
||||||
|
changed = True
|
||||||
|
|
||||||
|
# ===========================================
|
||||||
|
# run change commands if we need to
|
||||||
|
|
||||||
|
rc = 0
|
||||||
|
if changed:
|
||||||
|
if state in ('started', 'running'):
|
||||||
|
rc, stdout, stderr = _run("%s %s start" % (SERVICE, name))
|
||||||
|
elif state == 'stopped':
|
||||||
|
rc, stdout, stderr = _run("%s %s stop" % (SERVICE, name))
|
||||||
|
elif state == 'restarted':
|
||||||
|
rc1, stdout1, stderr1 = _run("%s %s stop" % (SERVICE, name))
|
||||||
|
rc2, stdout2, stderr2 = _run("%s %s start" % (SERVICE, name))
|
||||||
|
rc = rc1 and rc2
|
||||||
|
stdout = stdout1 + stdout2
|
||||||
|
stderr = stderr1 + stderr2
|
||||||
|
|
||||||
|
if rc != 0:
|
||||||
|
|
||||||
|
print json.dumps({
|
||||||
|
"failed" : 1,
|
||||||
|
"rc" : rc,
|
||||||
|
})
|
||||||
|
print >> sys.stderr, stdout + stderr
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
rc = 0
|
# ===============================================
|
||||||
if changed:
|
# success
|
||||||
if state in ('started', 'running'):
|
|
||||||
rc, stdout, stderr = _run("%s %s start" % (SERVICE, name))
|
|
||||||
elif state == 'stopped':
|
|
||||||
rc, stdout, stderr = _run("%s %s stop" % (SERVICE, name))
|
|
||||||
elif state == 'restarted':
|
|
||||||
rc1, stdout1, stderr1 = _run("%s %s stop" % (SERVICE, name))
|
|
||||||
rc2, stdout2, stderr2 = _run("%s %s start" % (SERVICE, name))
|
|
||||||
rc = rc1 and rc2
|
|
||||||
stdout = stdout1 + stdout2
|
|
||||||
stderr = stderr1 + stderr2
|
|
||||||
|
|
||||||
if rc != 0:
|
result = {"changed": changed}
|
||||||
print json.dumps({
|
|
||||||
"failed" : 1,
|
|
||||||
"rc" : rc,
|
|
||||||
})
|
|
||||||
print >> sys.stderr, stdout + stderr
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
|
|
||||||
# ===============================================
|
|
||||||
# success
|
|
||||||
|
|
||||||
result = {"changed": changed}
|
|
||||||
|
|
||||||
if list_ == 'status':
|
|
||||||
rc, stdout, stderr = _run("%s %s status" % (SERVICE, name))
|
rc, stdout, stderr = _run("%s %s status" % (SERVICE, name))
|
||||||
result['status'] = stdout
|
if list_items and list_items in [ 'status' ]:
|
||||||
|
result['status'] = stdout
|
||||||
print json.dumps(result)
|
print json.dumps(result)
|
||||||
|
|
||||||
|
|
||||||
|
elif list_items is not None:
|
||||||
|
|
||||||
|
# solo list=status mode, don't change anything, just return
|
||||||
|
# suitable for /usr/bin/ansible usage or API, playbooks
|
||||||
|
# not so much
|
||||||
|
|
||||||
|
print json.dumps({
|
||||||
|
"status" : status
|
||||||
|
})
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
print json.dumps(dict(failed=True, msg="expected state or list parameters"))
|
||||||
|
|
||||||
|
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue