File: prerm

package info (click to toggle)
gnuserv 3.12.8-12
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 832 kB
  • sloc: ansic: 5,138; lisp: 1,572; makefile: 419; sh: 268
file content (17 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash -e

# $Id: prerm,v 1.3 2004/02/16 11:23:59 benj Exp $

# Borrowed from xterm postinst
trap "echo ;\
      echo 'Received signal. Aborting configuration of gnuserv package.';\
      echo ;\
      exit 1" 1 2 3 15

for i in gnuattach gnuclient gnudoit; do
    update-alternatives --remove $i /usr/bin/$i.emacs
done

update-alternatives --remove editor /usr/bin/dtemacs

#DEBHELPER#