rpm scriptlet ordering for install/remove/upgrade using yum

前端 未结 3 2143
鱼传尺愫
鱼传尺愫 2021-02-09 06:32

I\'m working on a bug in our rpm scriptlets which is probably originating from order in which our scriptlets are executed during package install/removal/upgrade. We are using yu

3条回答
  •  孤城傲影
    2021-02-09 07:00

    Package order for installing a single package for the first time:

    • %pretrans of new package
    • %pre of new package
    • package install
    • %post of new package
    • %posttrans of new package

    Package order for removing a single package:

    • %preun of old package
    • removal of old package
    • %postun of old package

提交回复
热议问题