blob: 7490526fadf040b5a2e0b727ba45760e9ec5205c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
action=$1
version=$2
if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then
version=1.2.27
cp -a /etc/ssh-nonfree /etc/ssh
fi
# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0
db_input medium ssh/SUID_client || true
db_go
exit 0
|