File: postrm

package info (click to toggle)
xtel 3.1.4-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,988 kB
  • ctags: 4,359
  • sloc: ansic: 14,674; makefile: 3,931; sh: 41
file content (16 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# post remove script for the Debian GNU/Linux xtel package

set -e

update-inetd --disable xtel

if [ "$1" = purge ]
then
  update-inetd --remove xtel
  rm -f /var/log/xtel.log*
fi

if [ -x /usr/bin/update-menus ]; then 
    update-menus
fi