File: rmail.preinst.in

package info (click to toggle)
sendmail 8.15.2-8%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,108 kB
  • sloc: ansic: 95,435; sh: 9,754; perl: 7,444; makefile: 817
file content (14 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

PACKAGE=rmail;

if [ -L @docdir@/$PACKAGE ]; then
	# /usr/share/doc/$PACKAGE was a symlink to /usr/share/doc/sendmail
	rm @docdir@/$PACKAGE
fi
if [ -L /usr/share/bug/$PACKAGE ]; then
	rm /usr/share/bug/$PACKAGE
fi

#DEBHELPER#