aboutsummaryrefslogtreecommitdiffstats
path: root/russian/wordpress/files/pkg-install.in
blob: 4c547cb9144ac41cac3ccb564f1aaf3e2b875281 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
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