mirror of https://git.code.sf.net/p/isync/isync
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
201 B
9 lines
201 B
21 years ago
|
#!/bin/sh
|
||
|
set -e
|
||
|
. /usr/share/debconf/confmodule
|
||
|
if [ "$1" = "configure" -a ! -z "$2" ] && \
|
||
|
dpkg --compare-versions "$2" lt 0.8; then
|
||
|
db_input critical isync/upgrade_0.8 || true
|
||
|
db_go || true
|
||
|
fi
|