mirror of
https://github.com/Motion-Project/motion.git
synced 2026-02-01 18:41:37 -05:00
16 lines
221 B
Bash
16 lines
221 B
Bash
#!/bin/sh
|
|
# preinst script for motion
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
if dpkg --compare-versions "$2" lt-nl "3.1.14-1"; then
|
|
db_input high motion/moved_conf_dir || true
|
|
db_go || true
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|