freebsd-ports/www/mod_watch4/pkg-install
Clement Laforet f42f9284f3 Add mod_watch4 4.3, an Apache2 module to monitor bandwidth usage, for
use with MRTG etc.

PR:		57865
Submitted by:	Toshiya SAITOH <toshiya@saitoh.nu>
Approved by:    erwin (mentor) (implicitly)
2004-01-09 13:28:50 +00:00

14 lines
183 B
Bash

#!/bin/sh
case $2 in
PRE-INSTALL)
;;
POST-INSTALL)
install -d -o www -g www -m 0755 /var/spool/mod_watch
;;
*)
echo "Unexpected Argument $2."
exit 1
;;
esac
exit 0