diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-06-20 15:19:24 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-06-20 15:19:24 +0000 |
commit | b963f85bac515410282ae6ff2395785017bbfcd7 (patch) | |
tree | 89bdee7c66722c9a0d556e620236974862cffae0 /kamailio-model.lua | |
parent | 47f495bc3d32b1c167f225d47bf6fb5619e47e67 (diff) | |
download | acf-kamailio-b963f85bac515410282ae6ff2395785017bbfcd7.tar.bz2 acf-kamailio-b963f85bac515410282ae6ff2395785017bbfcd7.tar.xz |
Removed reloadplan action because duplicates feature of startstop
Diffstat (limited to 'kamailio-model.lua')
-rw-r--r-- | kamailio-model.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/kamailio-model.lua b/kamailio-model.lua index cfc5c76..b8f7bec 100644 --- a/kamailio-model.lua +++ b/kamailio-model.lua @@ -173,14 +173,6 @@ function update_filedetails(self, filedetails) return modelfunctions.setfiledetails(self, filedetails, is_valid_filename) end -function reloadplan() - local cmd = path .. " sercmd mi_dg dp_reload" - local f = io.popen(cmd) - local result = f:read("*a") - f:close() - return cfe({value=result, label="Reloading Dial Plan Result"}) -end - function list_files() local retval = {} for file in fs.find(null, baseurl) do |