freebsd-ports/www/mod_watch/pkg-install
Akinori MUSHA e7a5e5a707 Add mod_watch, an Apache module to monitor bandwidth usage. For use
with MRTG etc.

PR:		ports/29853
Submitted by:	Anders Nordby <anders@fix.no>
2001-09-03 18:27:28 +00:00

15 lines
189 B
Bash

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