config is in openssh-client 1:5.9p1-5ubuntu1.
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 18 19 20 21 22 23 24 25 26 | #!/bin/sh
action=$1
version=$2
# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0
if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
  version=1.2.27
  cp -a /etc/ssh-nonfree /etc/ssh
fi
# Was ssh-keysign's setuid bit turned off using the obsolete debconf
# question? If so, turn this into a statoverride. (Ugh.)
if dpkg --compare-versions "$2" lt 1:4.1p1-2 && \
    db_get ssh/SUID_client && [ "$RET" = false ] &&
    [ -x /usr/sbin/dpkg-statoverride ] && \
    ! dpkg-statoverride --list /usr/lib/ssh-keysign && \
    ! dpkg-statoverride --list /usr/lib/openssh/ssh-keysign; then
	dpkg-statoverride --update --add root root 0755 \
		/usr/lib/openssh/ssh-keysign
fi
exit 0
 |