mirror of
https://git.code.sf.net/p/isync/isync
synced 2026-03-06 18:23:51 +01:00
9 lines
201 B
Bash
9 lines
201 B
Bash
#!/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
|