summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--fetchcrl-model.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e8083d3..121ca1d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=fetch-crl
PACKAGE=acf-$(APP_NAME)
-VERSION=0.1.0
+VERSION=0.1.1
APP_DIST=\
fetchcrl* \
diff --git a/fetchcrl-model.lua b/fetchcrl-model.lua
index 7f34c9c..29617e4 100644
--- a/fetchcrl-model.lua
+++ b/fetchcrl-model.lua
@@ -43,7 +43,7 @@ function startstop_service(action)
file:close()
end
elseif (string.lower(action) == "delete") then
- local config = format.parse_configfile(fs.read_file(configfile) or "")
+ local config = format.parse_ini_file(fs.read_file(configfile) or "", "")
local dir = config.CRLDIR or outputdirectory
for file in fs.find(".*\.r0", dir) do
os.remove(file)