aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/p5-Tail-Stat/pkg-install
blob: 6c14b0d6db992d2b9a4eb26d6c1ef38a11ffd157 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/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