diff options
author | root <root@rshg047.dnsready.net> | 2011-06-05 22:48:57 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-05 22:48:57 +0000 |
commit | 3695b5d62c2aef6e82abc95d775a2ebd89bce081 (patch) | |
tree | db3a874c568e5f5ad3dfe651ceda1df63d5f354f /testing/man-db/man-db.install | |
parent | 80ba845c7cb571644d9dea61b9872c393d128c37 (diff) |
Sun Jun 5 22:48:57 UTC 2011
Diffstat (limited to 'testing/man-db/man-db.install')
-rw-r--r-- | testing/man-db/man-db.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/man-db/man-db.install b/testing/man-db/man-db.install new file mode 100644 index 000000000..f6f0f27a6 --- /dev/null +++ b/testing/man-db/man-db.install @@ -0,0 +1,22 @@ +post_install() { + echo "it's recommended to create an initial" + echo "database running as root:" + echo "\"/usr/bin/mandb --quiet\"" +} + +post_upgrade() { + if [ "`vercmp $2 2.5.3-2`" -lt 0 ]; then + echo "systemuser \"man\" is no more required" + echo "run \"userdel man\". please also" + echo "chown root:root /var/cache/man" + fi + # force database rebuild to get rid off badly imported pages + if [ "`vercmp $2 2.6.0.2`" -lt 0 ]; then + echo "(re)building database..." + mandb -c --quiet + fi +} + +post_remove() { + rm -rf /var/cache/man +} |