mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 04:31:13 +01:00
Refactored timer manager
This commit is contained in:
parent
2891269506
commit
2b5b693c2e
@ -64,14 +64,16 @@ def manage_timer(service, action):
|
|||||||
raise ValueError("Invalid action specified for manage_timer")
|
raise ValueError("Invalid action specified for manage_timer")
|
||||||
|
|
||||||
timer_name = f"{service}.timer"
|
timer_name = f"{service}.timer"
|
||||||
subprocess.run(['systemctl', action, timer_name])
|
try:
|
||||||
if action == 'start':
|
subprocess.run(['systemctl', action, timer_name], check=True)
|
||||||
subprocess.run(['systemctl', 'enable', timer_name])
|
if action == 'start':
|
||||||
elif action == 'stop':
|
subprocess.run(['systemctl', 'enable', timer_name], check=True)
|
||||||
subprocess.run(['systemctl', 'disable', timer_name])
|
elif action == 'stop':
|
||||||
|
subprocess.run(['systemctl', 'disable', timer_name], check=True)
|
||||||
print(f"{timer_name} {action}ed and {'enabled' if action == 'start' else 'disabled'}.")
|
print(f"{timer_name} {action}ed and {'enabled' if action == 'start' else 'disabled'}.")
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
print(f"Error managing timer {timer_name}: {e}")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
def stop_timer(service):
|
def stop_timer(service):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user