mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
11 lines
203 B
Bash
11 lines
203 B
Bash
#!/bin/sh
|
|
# $NetBSD: DEINSTALL,v 1.1 2009/10/02 12:38:44 hasso Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-DEINSTALL)
|
|
if [ -x ${PREFIX}/sbin/update-reader.conf ]; then
|
|
${PREFIX}/sbin/update-reader.conf
|
|
fi
|
|
;;
|
|
esac
|