freebsd-ports/sysutils/p5-Tail-Stat/pkg-install

11 lines
188 B
Text
Raw Normal View History

#!/bin/sh
if [ "$2" = "POST-INSTALL" ]; then
echo -n "Creating required directories:"
for d in /var/db/tstatd /var/run/tstatd; do
echo -n " ${d}"
mkdir -pm 1777 ${d}
done
echo
fi