diff options
Diffstat (limited to 'debian/openssh-client.postinst')
-rw-r--r-- | debian/openssh-client.postinst | 13 |
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 | ||
6 | umask 022 | 6 | umask 022 |
7 | 7 | ||
8 | if [ "$action" != configure ] | ||
9 | then | ||
10 | exit 0 | ||
11 | fi | ||
12 | |||
13 | 8 | ||
14 | create_alternatives() { | 9 | create_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 | ||
43 | create_alternatives | 38 | if [ "$action" = configure ]; then |
44 | set_ssh_agent_permissions | 39 | create_alternatives |
40 | set_ssh_agent_permissions | ||
41 | fi | ||
42 | |||
43 | #DEBHELPER# | ||
45 | 44 | ||
46 | exit 0 | 45 | exit 0 |