mirror of
https://github.com/Motion-Project/motion.git
synced 2026-02-02 11:01:40 -05:00
14 lines
207 B
Bash
14 lines
207 B
Bash
#!/bin/sh
|
|
# config script for motion
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
if dpkg --compare-versions "$2" lt-nl "3.1.19-1"; then
|
|
db_input high motion/moved_conf_dir || true
|
|
db_go || true
|
|
fi
|
|
|
|
exit 0
|