0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2024-11-27 23:07:53 +01:00

fix(config.sls): fix salt-lint errors

```bash
Examining openssh/config.sls of type state
[210] Numbers that start with `0` should always be encapsulated in quotation marks
openssh/config.sls:103
    - mode: 0600
```
This commit is contained in:
Imran Iqbal 2019-10-09 15:00:01 +01:00
parent 140e0f8c75
commit 7e35335613
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819

View File

@ -100,7 +100,7 @@ ssh_host_{{ keyType }}_key: # set permissions
file.managed:
- name: {{ keyFile }}
- replace: false
- mode: 0600
- mode: '0600'
- require:
- cmd: ssh_generate_host_{{ keyType }}_key
{%- if sshd_config %}