Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/services.py
blob: b177052b117ef8e44bfec470e68df4e3951ef2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
import os
from .general import SysCommand


def service_state(service_name: str) -> str:
	if os.path.splitext(service_name)[1] != '.service':
		service_name += '.service'  # Just to be safe

	state = b''.join(SysCommand(f'systemctl show --no-pager -p SubState --value {service_name}', environment_vars={'SYSTEMD_COLORS': '0'}))

	return state.strip().decode('UTF-8')