desktop-base-openmamba/apt/post-install.lua
2011-04-26 13:25:32 +02:00

13 lines
358 B
Lua
Executable File

-- This script will perform operations after new packages have been installed
--
-- Author: Silvan Calarco <silvan.calarco@qilinux.it> Copyright (c) 2009
--
-- Allow someone to disable this without removing the script.
if confget("APT::Get::post-install/b", "true") == "false" then
return
end
os.execute("/usr/share/apt/scripts/post-install.sh")
return