File: prerm

package info (click to toggle)
otags 3.09.3-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 280 kB
  • ctags: 279
  • sloc: ml: 995; sh: 464; makefile: 147
file content (16 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

case "$1" in
  remove)
    rm -f /var/lib/otags/vi/TAGS
    rm -f /var/lib/otags/emacs/TAGS
  ;;

  upgrade)
    rm -f /var/lib/otags/vi/TAGS
    rm -f /var/lib/otags/emacs/TAGS
  ;;

esac

#DEBHELPER#