File tree Expand file tree Collapse file tree 5 files changed +8
-2
lines changed
Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11man-db
2+ gawk
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ SecurityKeyProvider
106106SetEnv
107107ServerKeyBits
108108ShowPatchLevel
109+ SshdAuthPath
109110SshdSessionPath
110111StreamLocalBindMask
111112StreamLocalBindUnlink
Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ Match {{ match["Condition"] }}
232232{{ body_option("SetEnv",sshd_SetEnv) -}}
233233{{ body_option("ServerKeyBits",sshd_ServerKeyBits) -}}
234234{{ body_option("ShowPatchLevel",sshd_ShowPatchLevel) -}}
235+ {{ body_option("SshdAuthPath",sshd_SshdAuthPath) -}}
235236{{ body_option("SshdSessionPath",sshd_SshdSessionPath) -}}
236237{{ body_option("StreamLocalBindMask",sshd_StreamLocalBindMask) -}}
237238{{ body_option("StreamLocalBindUnlink",sshd_StreamLocalBindUnlink) -}}
Original file line number Diff line number Diff line change @@ -230,6 +230,7 @@ Match {{ match["Condition"] }}
230230{{ body_option("SetEnv",sshd_SetEnv) -}}
231231{{ body_option("ServerKeyBits",sshd_ServerKeyBits) -}}
232232{{ body_option("ShowPatchLevel",sshd_ShowPatchLevel) -}}
233+ {{ body_option("SshdAuthPath",sshd_SshdAuthPath) -}}
233234{{ body_option("SshdSessionPath",sshd_SshdSessionPath) -}}
234235{{ body_option("StreamLocalBindMask",sshd_StreamLocalBindMask) -}}
235236{{ body_option("StreamLocalBindUnlink",sshd_StreamLocalBindUnlink) -}}
Original file line number Diff line number Diff line change 5656 when :
5757 - ansible_facts['distribution'] == "Alpine"
5858
59- - name : Make sure manual pages and bash are installed on RedHat 7+
59+ - name : Make sure manual pages, gawk and bash are installed on RedHat 7+
6060 ansible.builtin.package :
6161 name :
6262 - man-db
6363 - bash
64+ - gawk
6465 state : present
6566 use : " {{ (__sshd_is_ostree | d(false)) |
6667 ternary('ansible.posix.rhel_rpm_ostree', omit) }}"
6768 when :
6869 - ansible_facts['os_family'] == "RedHat"
6970 - ansible_facts['distribution_major_version'] | int > 6
7071
71- - name : Make sure manual pages and bash are installed elsewhere
72+ - name : Make sure manual pages, gawk and bash are installed elsewhere
7273 ansible.builtin.package :
7374 name :
7475 - man
7576 - bash
77+ - gawk
7678 state : present
7779 use : " {{ (__sshd_is_ostree | d(false)) |
7880 ternary('ansible.posix.rhel_rpm_ostree', omit) }}"
You can’t perform that action at this time.
0 commit comments