diff options
author | djm@openbsd.org <djm@openbsd.org> | 2024-09-27 03:05:54 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2024-10-14 05:02:34 +0200 |
commit | 461741083d7254595fecea274e60fe3ebf3ce3f9 (patch) | |
tree | 5bb31035ef72c34c44f8125303e2440eb6ed76d7 /regress/servcfginclude.sh | |
parent | upstream: Split per-connection sshd-session binary (diff) | |
download | openssh-461741083d7254595fecea274e60fe3ebf3ce3f9.tar.xz openssh-461741083d7254595fecea274e60fe3ebf3ce3f9.zip |
upstream: test some more Match syntax, including criteria=arg and
negations
OpenBSD-Regress-ID: 67476baccc60bf1a255fd4e329ada950047b8b8d
Diffstat (limited to '')
-rw-r--r-- | regress/servcfginclude.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/regress/servcfginclude.sh b/regress/servcfginclude.sh index 518a703d1..f67c3caac 100644 --- a/regress/servcfginclude.sh +++ b/regress/servcfginclude.sh @@ -4,14 +4,14 @@ tid="server config include" cat > $OBJ/sshd_config.i << _EOF HostKey $OBJ/host.ssh-ed25519 -Match host a +Match host=a Banner /aa Match host b Banner /bb Include $OBJ/sshd_config.i.* # comment -Match host c +Match host=c Include $OBJ/sshd_config.i.* # comment Banner /cc @@ -25,7 +25,7 @@ Match Host e Banner /ee Include $OBJ/sshd_config.i.* -Match Host f +Match Host=f Include $OBJ/sshd_config.i.* Banner /ff @@ -47,13 +47,13 @@ Match host b Match host c Banner /ccc -Match Host d +Match Host=d Banner /ddd Match Host e Banner /eee -Match Host f +Match Host=f Banner /fff _EOF @@ -61,13 +61,13 @@ cat > $OBJ/sshd_config.i.2 << _EOF Match host a Banner /aaaa -Match host b +Match host=b Banner /bbbb Match host c # comment Banner /cccc -Match Host d +Match Host=d Banner /dddd Match Host e |