From 449bac6bb9fba18e97e5e7441f72b82f193fcf9d Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 30 Dec 2015 14:07:54 +0000 Subject: Change file actions filesize to size, size and mtime not user-friendly, use posix.stat over fs.stat, use new format functions --- provisioning-model.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'provisioning-model.lua') diff --git a/provisioning-model.lua b/provisioning-model.lua index 877a2b7..eac1623 100644 --- a/provisioning-model.lua +++ b/provisioning-model.lua @@ -571,7 +571,7 @@ mymodule.list_templates = function() fs.create_directory(baseurl) for f in posix.files(baseurl) do local file = baseurl..f - local details = fs.stat(file) + local details = posix.stat(file) if details.type == "regular" then if not reversed[file] then retval[#retval+1] = {filename=file} @@ -621,7 +621,7 @@ mymodule.get_template = function(self, clientdata) end end local filedetails = modelfunctions.getfiledetails(retval.filename.value, function(filename) return validator.is_valid_filename(filename, baseurl) end) - for i,n in ipairs({"filecontent", "filesize", "mtime"}) do + for i,n in ipairs({"filecontent", "size", "mtime"}) do retval[n] = filedetails.value[n] end @@ -2020,7 +2020,7 @@ end function mymodule.list_files() local retval = {} for i,file in ipairs(scriptfiles) do - local details = fs.stat(file) or {} + local details = posix.stat(file) or {} details.filename = file table.insert(retval, details) end -- cgit v1.2.3