10 lines
122 B
Python
10 lines
122 B
Python
import os
|
|
|
|
|
|
def reboot_system():
|
|
os.system('sudo reboot')
|
|
|
|
|
|
def shutdown_system():
|
|
os.system('sudo shutdown now')
|