preinst is in arpalert 2.0.11-7.1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh
# based on arpwatch.preinst: v4 2004/08/14 KELEMEN Peter <fuji@debian.org>
# arpalert.preinst: v1 2006/10/12 Jan Wagner <waja@cyconet.org>
set -e
NAME=arpalert
DBDIR=/var/lib/$NAME
DBFILE=arp.dat
BACKUPDIR=/var/backups
# Back up collected ARP databases.
if [ -d $DBDIR -a -d $BACKUPDIR ]; then
if [ -d $BACKUPDIR/$NAME ]; then
rm -r $BACKUPDIR/$NAME
fi
cp -rp $DBDIR $BACKUPDIR/$NAME
fi
|