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

from .exceptions import *
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(sys_command(f'systemctl show -p SubState --value {service_name}'))

	return state.decode('UTF-8')