Files
the-littlest-jupyterhub/tljh/systemd.py
yuvipanda aa522faf7f Don't use tee to write service unit files
We are running as root now directly, no need to tee
2018-06-27 02:10:26 -07:00

49 lines
926 B
Python

"""
Wraps systemctl to install, uninstall, start & stop systemd services.
If we use a debian package instead, we can get rid of all this code.
"""
import subprocess
import os
def reload_daemon():
"""
Equivalent to systemctl daemon-reload.
Makes systemd discover new units.
"""
subprocess.run([
'systemctl',
'daemon-reload'
], check=True)
def install_unit(name, unit, path='/etc/systemd/system'):
"""
Install unit wih given name
"""
with open(os.path.join(path, name), 'w') as f:
f.write(unit)
def uninstall_unit(name, path='/etc/systemd/system'):
"""
Uninstall unit with given name
"""
subprocess.run([
'rm',
os.path.join(path, name)
], check=True)
def start_service(name):
"""
Start service with given name.
"""
subprocess.run([
'systemctl',
'start',
name
], check=True)