Accepting request 987179 from home:adamm:branches:network

- openssh-8.4p1-ssh_config_d.patch: admin overrides should take
  priority (listed first) over package defaults

OBS-URL: https://build.opensuse.org/request/show/987179
OBS-URL: https://build.opensuse.org/package/show/network/openssh?expand=0&rev=239
This commit is contained in:
Hans Petter Jansson 2022-08-17 00:38:45 +00:00 committed by Git OBS Bridge
parent 859cab66f6
commit 6c8ae3051c
2 changed files with 16 additions and 6 deletions

View File

@ -20,17 +20,21 @@ Index: openssh-8.9p1/sshd_config
===================================================================
--- openssh-8.9p1.orig/sshd_config
+++ openssh-8.9p1/sshd_config
@@ -9,6 +9,13 @@
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
+Include /usr/etc/ssh/sshd_config.d/*.conf
+
@@ -5,10 +5,17 @@
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
+# To modify the system-wide sshd configuration, create a "*.conf" file under
+# "/etc/ssh/sshd_config.d/" which will be automatically included below.
+# Don't edit this configuration file itself if possible to avoid update
+# problems.
+Include /etc/ssh/sshd_config.d/*.conf
+
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
+Include /usr/etc/ssh/sshd_config.d/*.conf
#Port 22
#AddressFamily any

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jul 6 12:15:29 UTC 2022 - Adam Majer <adam.majer@suse.de>
- openssh-8.4p1-ssh_config_d.patch: admin overrides should take
priority (listed first) over package defaults
-------------------------------------------------------------------
Mon Mar 28 15:00:52 UTC 2022 - Ludwig Nussel <lnussel@suse.de>