freebsd-ports/www/mod_throttle/pkg-install
Anders Nordby 8774326ef7 Preserve state/runtime information between (re-)starts.
PR:		66451
Submitted by:	TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
2004-06-03 13:07:56 +00:00

14 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