mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 06:47:00 +00:00
11 lines
194 B
Lua
11 lines
194 B
Lua
|
|
local rc = require("rc")
|
||
|
|
local term = require("term")
|
||
|
|
local colors = require("colors")
|
||
|
|
|
||
|
|
term.setTextColor(colors.yellow)
|
||
|
|
print("Restarting")
|
||
|
|
|
||
|
|
if (...) ~= "now" then rc.sleep(1) end
|
||
|
|
|
||
|
|
rc.reboot()
|