summaryrefslogtreecommitdiff
path: root/debian/openssh-client.postinst
diff options
context:
space:
mode:
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