Skip to content

Commit 2d1c7c3

Browse files
committed
fix(server): fix salt-lint violations [skip ci]
```console [206] Jinja variables should have spaces before and after: {{ var_name }} mysql/server.sls:86 {{debconf_root_password}}: {'type': 'password', 'value': '{{ mysql_root_password }}'} [206] Jinja variables should have spaces before and after: {{ var_name }} mysql/server.sls:87 {{debconf_root_password_again}}: {'type': 'password', 'value': '{{ mysql_root_password }}'} ```
1 parent d5e44c9 commit 2d1c7c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mysql/server.sls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ mysql_password_debconf:
8383
debconf.set:
8484
- name: mysql-server
8585
- data:
86-
{{debconf_root_password}}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
87-
{{debconf_root_password_again}}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
86+
{{ debconf_root_password }}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
87+
{{ debconf_root_password_again }}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
8888
- prereq:
8989
- pkg: {{ mysql.serverpkg }}
9090
- require:

0 commit comments

Comments
 (0)