summaryrefslogtreecommitdiffstats
path: root/qos-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-09-28 13:38:54 +0000
committerTed Trask <ttrask01@yahoo.com>2009-09-28 13:38:54 +0000
commit8088c571bedb50bf9aa8b959c0acda107691e2a4 (patch)
treedf0bc4c8c12d8ede29bce41c36186c70f05f1074 /qos-model.lua
parente4580cd98e5e42612dfa49ccfa2bb79fc47cfab5 (diff)
downloadacf-iproute2-qos-8088c571bedb50bf9aa8b959c0acda107691e2a4.tar.bz2
acf-iproute2-qos-8088c571bedb50bf9aa8b959c0acda107691e2a4.tar.xz
Fixed bug with enable ifup/ifdown statements. Bumped to version 0.1.1v0.1.1
Diffstat (limited to 'qos-model.lua')
-rw-r--r--qos-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/qos-model.lua b/qos-model.lua
index 93eed04..81ba993 100644
--- a/qos-model.lua
+++ b/qos-model.lua
@@ -104,7 +104,7 @@ function enable(interface)
end
fs.write_file(conf, filecontent)
end
- local IFB_DEV = format.parse_ini_file(fs.read_file(conf) or "") or ""
+ local IFB_DEV = format.parse_ini_file(fs.read_file(conf) or "", "", "IFB_DEV") or ""
modify_interfaces(interface, IFB_DEV)
retval.value = "Enabled QOS on Interface"
end