mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-26 13:00:18 +01:00
20 lines
305 B
Bash
Executable file
20 lines
305 B
Bash
Executable file
#!/bin/sh
|
|
cat macros.j2
|
|
|
|
cat ssh_multi_options |
|
|
sort |
|
|
awk '{
|
|
print "{{ sshd_multiline(\""$1"\",sshd_"$1") -}}"
|
|
}'
|
|
|
|
cat ssh_kv_options |
|
|
sort |
|
|
awk '{
|
|
print "{{ sshd_value(\""$1"\",sshd_"$1") -}}"
|
|
}'
|
|
|
|
cat ssh_boolean_options |
|
|
sort |
|
|
awk '{
|
|
print "{{ sshd_boolean(\""$1"\",sshd_"$1") -}}"
|
|
}'
|