mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
23ab298077
Changes: http://www.nncpgo.org/Release-5_002e0_002e0.html PR: 241992 Submitted by: Sergey Matveev <stargrave@stargrave.org> (maintainer) Approved by: tz (mentor, implicit)
10 lines
196 B
Bash
10 lines
196 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" = "POST-DEINSTALL" ] || exit 0
|
|
|
|
if [ -e %%PREFIX%%/etc/nncp.hjson ]; then
|
|
echo "%%PREFIX%%/etc/nncp.hjson with your private keys is not removed!"
|
|
fi
|
|
|
|
exec rmdir /var/spool/nncp
|