config is in davfs2 1.4.7-3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh -e
# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0
case "$1" in
configure|reconfigure)
# Do you want /sbin/mount.davfs to be installed SUID root?
db_input medium davfs2/suid_file || true
db_go || true
;;
*)
exit 1
;;
esac
|