made mtcfg ask the user whether to route packets

This commit is contained in:
Izaya 2018-08-16 21:27:52 +10:00
parent c01a9fdadd
commit f3336f98f1
1 changed files with 21 additions and 12 deletions

View File

@ -12,6 +12,15 @@ local function clear()
io.write("\27[2J\27[H")
end
local function writecfg()
local fobj = io.open(cfgfile, "wb")
if fobj then
fobj:write(serial.serialize(cfg))
fobj:close()
print("Settings successfully written!")
end
end
if cfgfile then -- if a config file argument is specified, load it
local fobj = io.open(cfgfile, "rb")
if not fobj then
@ -44,12 +53,6 @@ else -- if not, set the hostname and edit the minitel config file
print("Hostname set to "..hostname..". Press any key to continue.")
event.pull("key_down")
end
if ops.firstrun then -- if --firstrun, quit now
os.execute("rc minitel enable")
print("Run mtcfg to configure advanced settings.")
return false
end
cfg.debug = false -- some default settings
cfg.port = 4096
@ -60,6 +63,18 @@ else -- if not, set the hostname and edit the minitel config file
cfg.pctime = 30
cfg.sroutes = {}
if ops.firstrun then -- if --firstrun, quit now
io.write("Should this machine route packets?\nThis should be disabled on large networks.\n\nRoute packets? [Y/n]: ")
local rp = io.read:lower():sub(1,1)
if rp == "n" then
cfg.route = false
end
os.execute("rc minitel enable")
writecfg()
print("Run mtcfg to configure advanced settings.")
return false
end
local fobj = io.open(cfgfile, "rb") -- attempt to replace the default settings
if fobj then
cfg = serial.unserialize(fobj:read("*a")) or cfg
@ -140,9 +155,3 @@ end
print("Writing settings...")
local fobj = io.open(cfgfile, "wb")
if fobj then
fobj:write(serial.serialize(cfg))
fobj:close()
print("Settings successfully written!")
end