mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
da44ba9aea
PR: 190095 Submitted by: maintainer
19 lines
166 B
Bash
19 lines
166 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: $
|
|
#
|
|
|
|
#set -vx
|
|
|
|
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
:
|
|
;;
|
|
POST-DEINSTALL)
|
|
/bin/rm -rf /var/run/iplog
|
|
;;
|
|
|
|
esac
|