Skip to content

Instantly share code, notes, and snippets.

@saerdnaer
Created September 2, 2015 20:25
Show Gist options
  • Save saerdnaer/9fc8b72aafe50fb97a7f to your computer and use it in GitHub Desktop.
Save saerdnaer/9fc8b72aafe50fb97a7f to your computer and use it in GitHub Desktop.
Dokuwiki upgrade script
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