mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
8774326ef7
PR: 66451 Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
15 lines
184 B
Bash
15 lines
184 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
install -d -o www -g www -m 0755 /var/run/mod_throttle
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2."
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|