X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/819a31ed24cfb95da7e37a7524ecf0655e106903..fa3c0c1b41ea8a81df85ec6260b8a1ad3a34735c:/debian/postinst

diff --git a/debian/postinst b/debian/postinst
index b9630b525..0a876ae08 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=1.1
+firstcompat=3.20100424
 
-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