mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
16 lines
249 B
Bash
16 lines
249 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
|
|
POST-INSTALL)
|
|
user=pop3vscan
|
|
group=mail
|
|
spooldir=/var/spool/pop3vscan
|
|
|
|
echo "Fixing ownerships and modes in \"${spooldir}\"."
|
|
chown -R ${user}:${group} ${spooldir}
|
|
chmod -R go= ${spooldir}
|
|
|
|
;;
|
|
esac
|