diff --git a/client/bs_shutdown.py b/client/bs_shutdown.py index b0e388c..9361424 100644 --- a/client/bs_shutdown.py +++ b/client/bs_shutdown.py @@ -44,12 +44,12 @@ def set_shutdown(time, now): return LAST_VALUE = time print("[BS Shutdown] shutting down in " + str(time - now) + " seconds") - # subprocess.run(["shutdown", "/s", "/t", (time - now), " "]) + subprocess.run(["shutdown", "/s", "/t", (time - now), " "]) def remove_shutdown(): print("[BS Shutdown] Removed shutdown") - # subprocess.run(["shutdown", "/a"]) + subprocess.run(["shutdown", "/a"]) def update(): global LAST_VALUE @@ -77,8 +77,8 @@ def update(): if (LAST_VALUE != 0): remove_shutdown() print("[BS Shutdown] New value") - LAST_VALUE = time set_shutdown(time, now) + LAST_VALUE = time if __name__ == '__main__': while True: