Signed-off-by: Gordon Hecker <gh@emlix.com>
* hardlinks are used when preparing the result tarball, if possible, to
improve performance
* logfiles are rotated instead of deleting them
+ * a bug in configuration validation for files sources was fixed
* unused code was removed
* the faq section in the documentation was extended
* outdated documentation was removed
end
if src.file then
for _,f in pairs(src.file) do
+ if type(f) ~= "table" then
+ e:append("%s: source has invalid file entry in `file' attribute",
+ sourcename)
+ break
+ end
-- catch deprecated configuration
if f.name then
e:append("source has file entry with `name' attribute")