fix(jinja): encode context as json
Or with python2 the template are generated with `u'<string>'`.
This commit is contained in:
parent
7752132275
commit
7a1f6199d0
@ -17,7 +17,7 @@ sshd_config:
|
||||
) }}
|
||||
- template: jinja
|
||||
- context:
|
||||
sshd_config: {{ sshd_config }}
|
||||
sshd_config: {{ sshd_config | json }}
|
||||
- user: {{ openssh.sshd_config_user }}
|
||||
- group: {{ openssh.sshd_config_group }}
|
||||
- mode: {{ openssh.sshd_config_mode }}
|
||||
@ -40,7 +40,7 @@ ssh_config:
|
||||
) }}
|
||||
- template: jinja
|
||||
- context:
|
||||
ssh_config: {{ ssh_config }}
|
||||
ssh_config: {{ ssh_config | json }}
|
||||
- user: {{ openssh.ssh_config_user }}
|
||||
- group: {{ openssh.ssh_config_group }}
|
||||
- mode: {{ openssh.ssh_config_mode }}
|
||||
|
@ -15,7 +15,7 @@ manage ssh_known_hosts file:
|
||||
) }}
|
||||
- template: jinja
|
||||
- context:
|
||||
known_hosts: {{ openssh | traverse("known_hosts", {}) }}
|
||||
known_hosts: {{ openssh | traverse("known_hosts", {}) | json }}
|
||||
- user: root
|
||||
- group: {{ openssh.ssh_config_group }}
|
||||
- mode: 644
|
||||
|
Loading…
Reference in New Issue
Block a user