* 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]
13 lines
256 B
Bash
13 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
|