2006-03-24 22:36:37 +01:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
|
2006-04-04 23:11:11 +02:00
|
|
|
# Change this when some incompatible change is made that requires
|
|
|
|
# rebuilding all wikis.
|
2009-10-10 02:16:46 +02:00
|
|
|
firstcompat=3.20091010
|
2006-04-04 23:11:11 +02:00
|
|
|
|
2006-05-05 22:48:20 +02:00
|
|
|
if [ "$1" = configure ] && \
|
2006-04-04 23:11:11 +02:00
|
|
|
dpkg --compare-versions "$2" lt "$firstcompat"; then
|
2006-05-05 22:48:20 +02:00
|
|
|
ikiwiki-mass-rebuild
|
2006-05-27 21:04:46 +02:00
|
|
|
else
|
2006-07-30 06:31:08 +02:00
|
|
|
ikiwiki-mass-rebuild -refresh -wrappers
|
2006-03-24 22:36:37 +01:00
|
|
|
fi
|