31db255b4b
Also, take care of the extmap.conf file as we do afp.conf. Submitted by: Chad Milios <cropcirclesystems@yahoo.com>
17 lines
328 B
Bash
17 lines
328 B
Bash
#!/bin/sh
|
|
#
|
|
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
|
|
|
|
DBDIR=/var/netatalk
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
umask 22
|
|
mkdir -p $DBDIR/CNID
|
|
chown root:wheel $DBDIR $DBDIR/CNID
|
|
tee $DBDIR/README > $DBDIR/CNID/README <<-'EOF'
|
|
This directory contains modifiable Netatalk configuration files and the CNID databases.
|
|
EOF
|
|
;;
|
|
esac
|