1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/www/mod_watch/pkg-install

15 lines
189 B
Plaintext
Raw Normal View History

#!/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