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


def service_state(service_name: 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')