e7a5e5a707
with MRTG etc. PR: ports/29853 Submitted by: Anders Nordby <anders@fix.no>
15 lines
189 B
Bash
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
|