13 lines
358 B
Lua
Executable File
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
|