commit | 03e5362f09096cc4ede738130953622d33bb2d81 | [log] [tgz] |
---|---|---|
author | Petr Michalec <epcim@apealive.net> | Thu May 04 12:44:01 2017 +0200 |
committer | Petr Michalec <epcim@apealive.net> | Thu May 04 12:44:01 2017 +0200 |
tree | e2c0063579dfd457f4d3f28100a9aab7c7df0209 | |
parent | 33715ac1367496802a2728b204a4d5f2b34b5fac [diff] |
fix prepending whitespaces starting 2nd line
diff --git a/salt/minion/cert.sls b/salt/minion/cert.sls index 7f63d4e..98050e9 100644 --- a/salt/minion/cert.sls +++ b/salt/minion/cert.sls
@@ -192,7 +192,7 @@ file.managed: - name: {{ cacerts_dir }}/{{ cacert_file }} - contents: | - {{ ca_cert | indent(8) }} + {{ ca_cert | replace(' ', '') | indent(8) }} - makedirs: True - show_changes: True - follow_symlinks: True