ansible-sshd/meta/make_option_list
2014-12-21 20:29:13 +00:00

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") -}}"
}'