diff options
Diffstat (limited to 'debian/openssh-client.config')
-rw-r--r-- | debian/openssh-client.config | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/openssh-client.config b/debian/openssh-client.config new file mode 100644 index 000000000..7490526fa --- /dev/null +++ b/debian/openssh-client.config | |||
@@ -0,0 +1,19 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | action=$1 | ||
4 | version=$2 | ||
5 | |||
6 | if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then | ||
7 | version=1.2.27 | ||
8 | cp -a /etc/ssh-nonfree /etc/ssh | ||
9 | fi | ||
10 | |||
11 | # Source debconf library. | ||
12 | . /usr/share/debconf/confmodule | ||
13 | db_version 2.0 | ||
14 | |||
15 | db_input medium ssh/SUID_client || true | ||
16 | |||
17 | db_go | ||
18 | |||
19 | exit 0 | ||