X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/13e3bf867157226076fcc14a0d3875fd129a66c7..8c2c8c6bea57e4d9119500b866f6bd286533d4ea:/debian/postinst diff --git a/debian/postinst b/debian/postinst index be5f53939..018e04f78 100755 --- a/debian/postinst +++ b/debian/postinst @@ -4,30 +4,11 @@ set -e # Change this when some incompatible change is made that requires # rebuilding all wikis. -firstcompat=0.2 +firstcompat=2.1 -wikilist=/etc/ikiwiki/wikilist - -processline () { - user="$1" - setup="$2" - - if [ -z "$user" ] || [ -z "$setup" ]; then - echo "parse failure in /etc/ikiwiki/wikilist, line: '$user $setup'" >&2 - exit 1 - fi - - if [ ! -f "$setup" ]; then - echo "warning: $setup specified in /etc/ikiwiki/wikilist does not exist, skipping" >&2 - else - echo "Rebuilding $setup as user $user ..." - su "$user" -c "ikiwiki -setup $setup" - fi -} - -if [ "$1" = configure ] && [ -e $wikilist ] && \ +if [ "$1" = configure ] && \ dpkg --compare-versions "$2" lt "$firstcompat"; then - grep -v '^#' $wikilist | grep -v '^$' | while read line; do - processline $line - done + ikiwiki-mass-rebuild +else + ikiwiki-mass-rebuild -refresh -wrappers fi