mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-06 03:43:30 +01:00
16 lines
238 B
Bash
Executable file
16 lines
238 B
Bash
Executable file
#!/bin/sh
|
|
cat 10_top.j2
|
|
|
|
cat options_match |
|
|
awk '{
|
|
print "{{ render_option(\""$1"\",match[\""$1"\"],true) -}}"
|
|
}'
|
|
|
|
cat 20_middle.j2
|
|
|
|
cat options_body |
|
|
awk '{
|
|
print "{{ body_option(\""$1"\",sshd_"$1") -}}"
|
|
}'
|
|
|
|
cat 30_bottom.j2
|