Skip to content

Commit

Permalink
fix(minion.sls): fix salt-lint errors
Browse files Browse the repository at this point in the history
```bash
Examining salt/minion.sls of type state
[210] Numbers that start with `0` should always be encapsulated in quotation marks
salt/minion.sls:20
    - mode: 0644
```
  • Loading branch information
myii authored and noelmcloughlin committed Jan 22, 2020
1 parent 6a82cec commit 88485e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/minion.sls
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ download-salt-minion:
{% endif %}
- user: root
- group: wheel
- mode: 0644
- mode: '0644'
- unless:
- test -n "{{ salt_settings.version }}" && '/opt/salt/bin/salt-minion --version=.*{{ salt_settings.version }}.*'
- require_in:
Expand Down

0 comments on commit 88485e1

Please sign in to comment.