summaryrefslogtreecommitdiff
path: root/debian/openssh-client.postinst
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-22 00:41:15 +0100
committerColin Watson <cjwatson@debian.org>2013-05-22 00:41:15 +0100
commit243c99ff0d74d4bf4bcf8ca6dea95286bdda2c0a (patch)
tree06803bf82d716a66cff54331ac506044a149c0a5 /debian/openssh-client.postinst
parent201b985b6442b39c14a0d97decf626af1100b31b (diff)
Add #DEBHELPER# tokens to openssh-client.postinst and
openssh-server.postinst.
Diffstat (limited to 'debian/openssh-client.postinst')
-rw-r--r--debian/openssh-client.postinst13
1 files changed, 6 insertions, 7 deletions
diff --git a/debian/openssh-client.postinst b/debian/openssh-client.postinst
index d752d01c9..85cedc406 100644
--- a/debian/openssh-client.postinst
+++ b/debian/openssh-client.postinst
@@ -5,11 +5,6 @@ oldversion="$2"
5 5
6umask 022 6umask 022
7 7
8if [ "$action" != configure ]
9 then
10 exit 0
11fi
12
13 8
14create_alternatives() { 9create_alternatives() {
15# Create alternatives for the various r* tools. 10# Create alternatives for the various r* tools.
@@ -40,7 +35,11 @@ set_ssh_agent_permissions() {
40} 35}
41 36
42 37
43create_alternatives 38if [ "$action" = configure ]; then
44set_ssh_agent_permissions 39 create_alternatives
40 set_ssh_agent_permissions
41fi
42
43#DEBHELPER#
45 44
46exit 0 45exit 0