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 }}'}
```
This commit is contained in:
Imran Iqbal 2020-12-14 09:05:59 +00:00
parent d5e44c90bd
commit 2d1c7c30e6
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819

View file

@ -83,8 +83,8 @@ mysql_password_debconf:
debconf.set:
- name: mysql-server
- data:
{{debconf_root_password}}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
{{debconf_root_password_again}}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
{{ debconf_root_password }}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
{{ debconf_root_password_again }}: {'type': 'password', 'value': '{{ mysql_root_password }}'}
- prereq:
- pkg: {{ mysql.serverpkg }}
- require: