made dev commands actually do something

This commit is contained in:
Nicholas Dyer 2023-05-14 19:26:38 -04:00
parent 1c467371a8
commit 7c49424350
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ import os
def reboot_system():
os.system('echo TEST REBOOT')
os.system('sudo reboot')
def shutdown_system():
os.system('echo TEST SHUTDOWN')
os.system('sudo shutdown')