summaryrefslogtreecommitdiff
path: root/debian/openssh-server.init
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-10-04 20:36:53 +0000
committerColin Watson <cjwatson@debian.org>2009-10-04 20:36:53 +0000
commit8b7c3010b06f4deab4cb60841468477083931a88 (patch)
tree280fd476a993dd7df49312af88b5d1ed6bfd4049 /debian/openssh-server.init
parentf93c88928627afc70fd26c2643557343c4dd80d9 (diff)
Pass $SSHD_OPTS when checking configuration too (thanks, "sobtwmxt";
closes: #548662).
Diffstat (limited to 'debian/openssh-server.init')
-rw-r--r--debian/openssh-server.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/openssh-server.init b/debian/openssh-server.init
index 70cded948..07b517260 100644
--- a/debian/openssh-server.init
+++ b/debian/openssh-server.init
@@ -75,7 +75,7 @@ check_privsep_dir() {
75 75
76check_config() { 76check_config() {
77 if [ ! -e /etc/ssh/sshd_not_to_be_run ]; then 77 if [ ! -e /etc/ssh/sshd_not_to_be_run ]; then
78 /usr/sbin/sshd -t || exit 1 78 /usr/sbin/sshd $SSHD_OPTS -t || exit 1
79 fi 79 fi
80} 80}
81 81