diff options
Diffstat (limited to 'community/pkgfile/pkgfile.install')
-rw-r--r-- | community/pkgfile/pkgfile.install | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/community/pkgfile/pkgfile.install b/community/pkgfile/pkgfile.install deleted file mode 100644 index 5545a3d39..000000000 --- a/community/pkgfile/pkgfile.install +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -post_install() { - printf "==> Run 'pkgfile --update' to initialize the database\n" -} - -post_remove() { - # the cache dir might not be removed, notify the user - if [ -d var/cache/pkgfile ]; then - printf "==> /var/cache/pkgfile has not been removed\n" - fi -} - -post_upgrade() { - if [ "$(vercmp 5 "$2")" -eq 1 ]; then - printf "==> DB format has changed. Please run pkgfile -uu\n" - fi -} |