.deb包postinst在包中调用另一个脚本

时间:2014-06-10 16:25:05

标签: bash debian packaging deb

是否可以在postinst中调用另一个bash脚本?

我正在尝试调用debian包中的另一个bashscript。目前我似乎没有运气这样做。

<postinst>
./postinst_script_2

1 个答案:

答案 0 :(得分:1)

是的,您可以在postinsta期间从包内调用另一个bash脚本。将软件包解压缩到文件系统后发生postinst。

但是,您可能无法依赖运行postinst时当前目录的内容。三人是对的;使用绝对路径来调用它。