mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-11 23:25:17 +00:00
9 lines
229 B
Bash
9 lines
229 B
Bash
#!/bin/sh
|
|
if ! id -u vpop > /dev/null 2>&1; then
|
|
echo
|
|
echo "Fake account \"vpop\" needed for virtual hosts support (as mboxes owner)."
|
|
echo "Please add it by hand in case you need them (try \"man vipw\")."
|
|
echo
|
|
fi
|
|
exit 0
|