summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-09-29 18:01:28 +0000
committerTed Trask <ttrask01@yahoo.com>2008-09-29 18:01:28 +0000
commitd4c98c35e23d6a6828f0e18c9268b0542b907891 (patch)
tree7a3101b482578683e4d7bf9006c009f1f7c3402b
parent1ffeea591f83d6dd245400257236720e036613e8 (diff)
downloadacf-gnats-d4c98c35e23d6a6828f0e18c9268b0542b907891.tar.bz2
acf-gnats-d4c98c35e23d6a6828f0e18c9268b0542b907891.tar.xz
Removed getopts library and added functionality to format library as opts_to_table, table_to_opts, parse_configfile2, update_configfile2, get_section, and set_section. New functions work on strings, not files. Modified all code using getopts to use format instead. Fixed nil string bugs in TCPProxy. Fixed forward only bug in DNSCache.
git-svn-id: svn://svn.alpinelinux.org/acf/gnats/trunk@1535 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--gnats-model.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/gnats-model.lua b/gnats-model.lua
index ed07361..706ac55 100644
--- a/gnats-model.lua
+++ b/gnats-model.lua
@@ -3,7 +3,6 @@ module(..., package.seeall)
-- Load libraries
require("fs")
require("date")
-require("getopts")
require("format")
require("posix")
require("validator")
@@ -377,7 +376,7 @@ end
function getconfig()
if (fs.is_file(configfile)) then
- return getopts.getoptsfromfile(configfile, "") or {}
+ return format.parse_configfile2(fs.read_file(configfile), "") or {}
end
return {}
end