Created
September 2, 2015 20:25
-
-
Save saerdnaer/9fc8b72aafe50fb97a7f to your computer and use it in GitHub Desktop.
Dokuwiki upgrade script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export VERSION=stable | |
wget http://download.dokuwiki.org/src/dokuwiki/dokuwiki-$VERSION.tgz | |
tar -xf dokuwiki-$VERSION.tgz --strip-components=1 | |
rm dokuwiki-$VERSION.tgz | |
# Remove unused files | |
grep -Ev '^($|#)' data/deleted.files | xargs -n 1 rm -vf | |
# fix permissions | |
chown -R wiki:wiki data | |
chown -R wiki:wiki lib/plugins/ | |
# Reset upgrade message | |
rm /usr/local/var/dokuwiki/orga.cccv.de/cache/messages.txt | |
# Copy icons from | |
cp -a backup/* . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment