pkg_delete - a utility for deleting previously installed software package distributions
You are advised to verify the competence and identity of those who provide installable package files. For extra protection, examine all the package control files in the package record directory ( /var/db/pkg/<pkg-name>/ ) Pay particular attention to any +INSTALL, +POST-INSTALL, +DEINSTALL, +POST-DEINSTALL, +REQUIRE or +MTREE_DIRS files, and inspect the +CONTENTS file for @cwd @mode (check for setuid), @dirrm @exec and @unexec directives, and/or use the pkg_info1 command to examine the installed package control files. Ef
If a package is required by other installed packages, will list those dependent packages and refuse to delete the package (unless the -f option is given).
If the package contains a require file (see pkg_create1), then this is executed first as
require <pkg-name> DEINSTALL(where pkg-name is the name of the package in question and DEINSTALL is a keyword denoting that this is a deinstallation) to see whether or not deinstallation should continue. A non-zero exit status means no, unless the -f option is specified.
If a deinstall script exists for the package, it is executed before any files are removed. It is this script's responsibility to clean up any additional messy details around the package's installation, since all knows how to do is delete the files created in the original distribution. The deinstall script is called as:
script <pkg-name> DEINSTALLwhere pkg-name is the name of the package in question and DEINSTALL is a keyword denoting this as the pre-deinstallation phase.
Note The DEINSTALL keyword will not appear if separate scripts for deinstall and post-deinstall are given during package creation time (using the -k and -K flags to pkg_create1).
If a post-deinstall script exists for the package, it is executed after all files are removed. It is this script's responsibility to clean up any additional messy details around the package's installation, and leave the system (hopefully) in the same state that it was prior to the installation of the package.
The post-deinstall script is called as:
script <pkg-name> POST-DEINSTALLwhere pkg-name is the name of the package in question and POST-DEINSTALL is a keyword denoting this as the post-deinstallation phase.
Note The POST-DEINSTALL keyword will not appear if separate scripts for deinstall and post-deinstall are given during package creation time (using the -k and -K flags to pkg_create1).
Reasoning behind passing keywords such as DEINSTALL and POST-DEINSTALL is that it lets you potentially write only one program/script that handles all aspects of installation and deletion.
But experience has proved that this is a lot more difficult to maintain and is not as advantageous as having separate scripts that handle each aspect of installation and deinstallation.
All scripts are called with the environment variable PKG_PREFIX set to the installation prefix (see the -p option above). This allows a package author to write a script that reliably performs some action on the directory where the package is installed, even if the user might have changed it by specifying the -p option when running or pkg_add
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |