11 lines
187 B
Python
11 lines
187 B
Python
import socket
|
|
import os
|
|
|
|
s = socket.socket (socket.AF_INET, socket.SOCK_STREAM)
|
|
s.connect (('localhost', 9999))
|
|
s.send (b'Q')
|
|
s.close
|
|
|
|
print("REBOOTING")
|
|
os.system("shutdown -t 0 -r -f")
|