当前位置: 代码迷 >> 综合 >> 升级和安装的rpm过程中 spec 文件中脚本调用顺序和参数
  详细解决方案

升级和安装的rpm过程中 spec 文件中脚本调用顺序和参数

热度:72   发布时间:2023-12-16 10:28:14.0

升级和安装的rpm过程中 spec 文件中脚本调用顺序和参数

RPM has 4 parts where (shell) scripts can be used:
RPM 在升级/安装的过程中,有4个部分的脚本会被调用:

  • %pre - 安装前调用
  • %preun - 卸载前调用
  • %post - 安装后调用
  • %postun - 卸载后调用

在执行这些脚本时,都会同一个变量 “$1” 传入的值,来判断具体执行的是以下的哪步操作:

  • Initial installation
  • Upgrade
  • Un-installation
%pre %preun %post %postun
Initial installation 1 不适用 1 不适用
Upgrade 2 1 2 1
Un-installation 不适用 0 不适用 0

下面是一个脚本的模板:

%post
case "$1" in
1)
# This is an initial install.
chkconfig --add newservice
;;
2)
# This is an upgrade.
# First delete the registered service.
chkconfig --del newservice
# Then add the registered service. In case run levels changed in the init script, the service will be correctly re-added.
chkconfig --add newservice
;;
esac%preun
case "$1" in
0)
# This is an un-installation.
service newservice stop
chkconfig --del newservice
;;
1)
# This is an upgrade.
# Do nothing.
:
;;
esac

下表是安装/升级过程中,具体执行的操作的顺序:

install upgrade un-install
pre $1=1 %pre $1=2 %preun $1=0
copy files copy files remove files
%post $1=1 %post $1=2 %postun $1=0
%preun $1=1 from old RPM.
delete files only found in old package
%postun $1=1 from old RPM.

所以,如果对某一个包从版本1升级到版本2的操作, 脚本的执行顺序会如下所示:

  1. 执行 v2 的 %pre
  2. 释放 v2 中的文件
  3. 执行 v2 的 %post
  4. 执行 v1 的 %preun
  5. 删除 v1 中特有的文件
  6. 执行 v1 中的 %postun

这就意味着,如果 v1 的程序中包含有不正确的脚本,就会导致无法正常升级。