blob: 3122e83d2f1feeb4688641c3ff187edfb9aaba0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: DEINSTALL,v 1.2 2004/07/14 20:07:07 jlam Exp $
# Additional files that are may be created by the sysadmin.
ALL_FILES="${ALL_FILES} /dev/null ${PKG_SYSCONFDIR}/userdb"
ALL_FILES="${ALL_FILES} /dev/null ${PKG_SYSCONFDIR}/userdb.dat"
ALL_FILES="${ALL_FILES} /dev/null ${PKG_SYSCONFDIR}/userdbshadow.dat"
case ${STAGE} in
POST-DEINSTALL)
#
# Unconditionally remove authdaemon state directory as it contains
# files and sockets that authdaemond creates every time it is
# started.
#
${RM} -rf @AUTHDAEMONVAR@
esac
|