mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
14 lines
323 B
Text
14 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 $*
|