mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
|
#!/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
|