mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
15 lines
323 B
Text
15 lines
323 B
Text
|
post_install() {
|
||
|
echo "-- Go to the http://your-server/dokuwiki/install.php to setup dokuwiki"
|
||
|
chown -R http:http /srv/http/dokuwiki/data && \
|
||
|
chown http:http /srv/http/dokuwiki/conf
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
chown -R http:http /srv/http/dokuwiki/data && \
|
||
|
chown http:http /srv/http/dokuwiki/conf
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|