summaryrefslogtreecommitdiff
path: root/debian/openssh-server.postinst
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-06-28 14:44:18 +0100
committerColin Watson <cjwatson@debian.org>2014-06-28 14:44:18 +0100
commit5c0d1a95447b14f81a69530c44db768f9a3daddd (patch)
treec58872a41b0d913dc8653a0123ed79db569809a2 /debian/openssh-server.postinst
parentb13ebc64d4ec4653c61d3e669eecda68dd93ec1e (diff)
Make get_config_option more robust against trailing whitespace (thanks, LaMont Jones).
Diffstat (limited to 'debian/openssh-server.postinst')
-rw-r--r--debian/openssh-server.postinst4
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst
index daa0f6796..90bad6285 100644
--- a/debian/openssh-server.postinst
+++ b/debian/openssh-server.postinst
@@ -16,7 +16,9 @@ get_config_option() {
16 [ -f /etc/ssh/sshd_config ] || return 16 [ -f /etc/ssh/sshd_config ] || return
17 17
18 # TODO: actually only one '=' allowed after option 18 # TODO: actually only one '=' allowed after option
19 perl -lne 's/\s+/ /g; print if s/^\s*'"$option"'[[:space:]=]+//i' \ 19 perl -lne '
20 s/[[:space:]]+/ /g; s/[[:space:]]+$//;
21 print if s/^[[:space:]]*'"$option"'[[:space:]=]+//i' \
20 /etc/ssh/sshd_config 22 /etc/ssh/sshd_config
21} 23}
22 24