File: postinst

package info (click to toggle)
otags 4.05.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 504 kB
  • sloc: ml: 1,293; sh: 212; makefile: 195
file content (22 lines) | stat: -rwxr-xr-x 358 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# postinst script for otags
#
# see: dh_installdeb(1)

set -e

case "$1" in
  configure)
    echo -n "Updating system-wide tags tables...(this may take a minute) "
    update-otags 2> /dev/null
    echo "done."
  ;;
esac


# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0