mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
25 lines
313 B
Bash
25 lines
313 B
Bash
#! /bin/sh
|
|
|
|
case "$2" in
|
|
PRE-INSTALL)
|
|
;;
|
|
|
|
POST-INSTALL)
|
|
for d in \
|
|
"" \
|
|
failed.postings \
|
|
interesting.groups \
|
|
leaf.node \
|
|
message.id \
|
|
out.going \
|
|
temp.files; do
|
|
install -d -o news -g news -m 2775 %%SPOOLDIR%%/$d
|
|
done
|
|
;;
|
|
|
|
*)
|
|
echo >&2 "Unknown argument in $0 $@"
|
|
exit 1
|
|
;;
|
|
esac
|