From 7e35335613e77c0f4af90c262844c846386b25e0 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 9 Oct 2019 15:00:01 +0100 Subject: [PATCH] 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 ``` --- openssh/config.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssh/config.sls b/openssh/config.sls index dde58a2..4ea7563 100644 --- a/openssh/config.sls +++ b/openssh/config.sls @@ -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 %}