File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2020
2121title 'SSH server config'
2222
23- sshd_valid_ciphers = input ( 'sshd_valid_ciphers' , value : ssh_crypto . valid_ciphers , description : 'Expected value for sshd_config ciphers' )
24- sshd_valid_kexs = input ( 'sshd_valid_kexs' , value : ssh_crypto . valid_kexs , description : 'Expected value for sshd_config kexs' )
25- sshd_valid_macs = input ( 'sshd_valid_macs' , value : ssh_crypto . valid_macs , description : 'Expected value for sshd_config macs' )
23+ sshd_valid_ciphers = input ( 'sshd_valid_ciphers' , value : " #{ ssh_crypto . valid_ciphers } " , description : 'Expected value for sshd_config ciphers' )
24+ sshd_valid_kexs = input ( 'sshd_valid_kexs' , value : " #{ ssh_crypto . valid_kexs } " , description : 'Expected value for sshd_config kexs' )
25+ sshd_valid_macs = input ( 'sshd_valid_macs' , value : " #{ ssh_crypto . valid_macs } " , description : 'Expected value for sshd_config macs' )
2626sshd_permittunnel = input ( 'sshd_permittunnel' , value : 'no' , description : 'Expected value for sshd_config PermitTunnel' )
2727sshd_tcpforwarding = input ( 'sshd_tcpforwarding' , value : 'no' , description : 'Expected value for sshd_config TcpForwarding' )
2828sshd_agentforwarding = input ( 'sshd_agentforwarding' , value : 'no' , description : 'Expected value for sshd_config AgentForwarding' )
You can’t perform that action at this time.
0 commit comments