summaryrefslogtreecommitdiff
path: root/community/pkgfile/pkgfile.install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-19 00:01:52 +0000
committerroot <root@rshg054.dnsready.net>2012-07-19 00:01:52 +0000
commit6b87f8519dc037f4fd4c19d8f36b7d7565559bd3 (patch)
tree4c1b86f91ce9c742867b6eecd4857b20919cd713 /community/pkgfile/pkgfile.install
parent63d179775e063452db6358e15b9847e7fc6c84b6 (diff)
Thu Jul 19 00:01:52 UTC 2012
Diffstat (limited to 'community/pkgfile/pkgfile.install')
-rw-r--r--community/pkgfile/pkgfile.install9
1 files changed, 8 insertions, 1 deletions
diff --git a/community/pkgfile/pkgfile.install b/community/pkgfile/pkgfile.install
index 7653630b0..bf0c9cfa3 100644
--- a/community/pkgfile/pkgfile.install
+++ b/community/pkgfile/pkgfile.install
@@ -1,5 +1,12 @@
#!/bin/bash
post_install() {
- printf "==> Run 'pkgfile ---update' to initialize the database\n"
+ 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
}