summarylogtreecommitdiffstats
path: root/findpkg.install
blob: d593d6d3b7c65bcf5f8003879f22aeee26eb9d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

post_install() {
  printf "==> Run 'findpkg --update' to initialize the database\n"
}

post_remove() {
  # the database might not be removed, notify the user
  if [[ -f /var/lib/findpkg/database ]]; then
    printf "==> var/lib/findpkg/database has not been removed\n"
  fi
}