mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
b7441e8990
* Clean up the port to use the new OPTIONS framework [1] * Make sure to use the right Python executable for afpstats [2] PR: 213192 [2] Submitted by: bofh [1] Differential Revision: D7537 [1]
14 lines
256 B
Bash
14 lines
256 B
Bash
#!/bin/sh
|
|
#
|
|
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
|
|
|
|
DBDIR=/var/netatalk
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
tee $DBDIR/README > $DBDIR/CNID/README <<-'EOF'
|
|
This directory contains modifiable Netatalk configuration files and the CNID databases.
|
|
EOF
|
|
;;
|
|
esac
|