mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[enh] move to dbus to retreive service status
This commit is contained in:
parent
312e9bb22e
commit
f4df8c8ec8
2 changed files with 33 additions and 32 deletions
2
debian/control
vendored
2
debian/control
vendored
|
@ -12,7 +12,7 @@ Architecture: all
|
||||||
Depends: ${python:Depends}, ${misc:Depends}
|
Depends: ${python:Depends}, ${misc:Depends}
|
||||||
, moulinette (>= 2.7.1), ssowat (>= 2.7.1)
|
, moulinette (>= 2.7.1), ssowat (>= 2.7.1)
|
||||||
, python-psutil, python-requests, python-dnspython, python-openssl
|
, python-psutil, python-requests, python-dnspython, python-openssl
|
||||||
, python-apt, python-miniupnpc
|
, python-apt, python-miniupnpc, python-dbus
|
||||||
, glances
|
, glances
|
||||||
, dnsutils, bind9utils, unzip, git, curl, cron, wget
|
, dnsutils, bind9utils, unzip, git, curl, cron, wget
|
||||||
, ca-certificates, netcat-openbsd, iproute
|
, ca-certificates, netcat-openbsd, iproute
|
||||||
|
|
|
@ -202,46 +202,47 @@ def service_status(names=[]):
|
||||||
raise MoulinetteError(errno.EINVAL,
|
raise MoulinetteError(errno.EINVAL,
|
||||||
m18n.n('service_unknown', service=name))
|
m18n.n('service_unknown', service=name))
|
||||||
|
|
||||||
status = None
|
# this "service" isn't a service actually so we skip it
|
||||||
if services[name].get('status') == 'service':
|
#
|
||||||
status = 'service %s status' % name
|
# the historical reason is because regenconf has been hacked into the
|
||||||
elif "status" in services[name]:
|
# service part of YunoHost will in some situation we need to regenconf
|
||||||
status = str(services[name]['status'])
|
# for things that aren't services
|
||||||
else:
|
# the hack was to add fake services...
|
||||||
|
# we need to extract regenconf from service at some point, also because
|
||||||
|
# some app would really like to use it
|
||||||
|
if "status" in services[name] and services[name]["status"] is None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
runlevel = 5
|
status = _get_service_information_from_systemd(name)
|
||||||
if 'runlevel' in services[name].keys():
|
|
||||||
runlevel = int(services[name]['runlevel'])
|
|
||||||
|
|
||||||
result[name] = {'status': 'unknown', 'loaded': 'unknown'}
|
result[name] = {
|
||||||
|
'status': str(status.get("SubState", "unknown")),
|
||||||
# Retrieve service status
|
'loaded': str(status.get("LoadState", "unknown")),
|
||||||
try:
|
}
|
||||||
ret = subprocess.check_output(status, stderr=subprocess.STDOUT,
|
|
||||||
shell=True)
|
|
||||||
except subprocess.CalledProcessError as e:
|
|
||||||
if 'usage:' in e.output.lower():
|
|
||||||
logger.warning(m18n.n('service_status_failed', service=name))
|
|
||||||
else:
|
|
||||||
result[name]['status'] = 'inactive'
|
|
||||||
else:
|
|
||||||
result[name]['status'] = 'running'
|
|
||||||
|
|
||||||
# Retrieve service loading
|
|
||||||
rc_path = glob.glob("/etc/rc%d.d/S[0-9][0-9]%s" % (runlevel, name))
|
|
||||||
if len(rc_path) == 1 and os.path.islink(rc_path[0]):
|
|
||||||
result[name]['loaded'] = 'enabled'
|
|
||||||
elif os.path.isfile("/etc/init.d/%s" % name):
|
|
||||||
result[name]['loaded'] = 'disabled'
|
|
||||||
else:
|
|
||||||
result[name]['loaded'] = 'not-found'
|
|
||||||
|
|
||||||
if len(names) == 1:
|
if len(names) == 1:
|
||||||
return result[names[0]]
|
return result[names[0]]
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
def _get_service_information_from_systemd(service):
|
||||||
|
"this is the equivalent of 'systemctl status $service'"
|
||||||
|
import dbus
|
||||||
|
|
||||||
|
d = dbus.SystemBus()
|
||||||
|
|
||||||
|
systemd = d.get_object('org.freedesktop.systemd1','/org/freedesktop/systemd1')
|
||||||
|
manager = dbus.Interface(systemd, 'org.freedesktop.systemd1.Manager')
|
||||||
|
|
||||||
|
service_path = manager.GetUnit(service + ".service")
|
||||||
|
service_proxy = d.get_object('org.freedesktop.systemd1', service_path)
|
||||||
|
|
||||||
|
# unit_proxy = dbus.Interface(service_proxy, 'org.freedesktop.systemd1.Unit',)
|
||||||
|
properties_interface = dbus.Interface(service_proxy, 'org.freedesktop.DBus.Properties')
|
||||||
|
|
||||||
|
return properties_interface.GetAll('org.freedesktop.systemd1.Unit')
|
||||||
|
|
||||||
|
|
||||||
def service_log(name, number=50):
|
def service_log(name, number=50):
|
||||||
"""
|
"""
|
||||||
Log every log files of a service
|
Log every log files of a service
|
||||||
|
|
Loading…
Add table
Reference in a new issue