summaryrefslogtreecommitdiff
path: root/www/wordpress/files/pkg-install.in
blob: 4d3943f8ffa6e8e01933f34a9d95d331a31b2194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# $FreeBSD$

case $2 in
	PRE-INSTALL)
		;;
	POST-INSTALL)
		%%CHOWN%% -R %%WWWOWN%% %%WWWDIR%%/wp-content
		%%FIND%% %%WWWDIR%% -type d -print | xargs %%CHGRP%% %%WWWGRP%%
		%%FIND%% %%WWWDIR%% -type d -print | xargs %%CHMOD%% g+w
		;;
	*)
	;;
esac