Wrong function name in os.path

This commit is contained in:
Anton Hvornum 2020-09-01 14:37:54 +02:00
parent 4291f3e84e
commit 99dcdc357f
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,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')