mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-12 11:31:18 +02:00
15 lines
142 B
Bash
15 lines
142 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
install -d -o root -g wheel -m 0750 %%STATEDIR%%
|
|
;;
|
|
POST-INSTALL)
|
|
;;
|
|
esac
|
|
exit 0
|
|
#EOF
|