mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
063aa614e8
Update MASTER_SITES and WWW Add SHA256 PR: 90018 Submitted by: maintainer
17 lines
211 B
Bash
17 lines
211 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
USER=polw
|
|
|
|
if pw usershow "${USER}" 2>/dev/null 1>&2; then
|
|
echo "To delete user permanently, use 'pw userdel ${USER}'"
|
|
fi
|
|
|
|
exit 0
|