moving away from regenning wiki on every upgrade, added a variable to

control when to do it
master
joey 2006-04-04 21:11:11 +00:00
parent f0ac5963b6
commit 35e72f56c1
1 changed files with 6 additions and 1 deletions

7
debian/postinst vendored
View File

@ -2,6 +2,10 @@
set -e
#DEBHELPER#
# Change this when some incompatible change is made that requires
# rebuilding all wikis.
firstcompat=0.1
wikilist=/etc/ikiwiki/wikilist
processline () {
@ -21,7 +25,8 @@ processline () {
fi
}
if [ "$1" = configure ] && [ -e $wikilist ]; then
if [ "$1" = configure ] && [ -e $wikilist ] && \
dpkg --compare-versions "$2" lt "$firstcompat"; then
grep -v '^#' $wikilist | grep -v '^$' | while read line; do
processline $line
done