From c7777c74b27192d8d04a038e56db312d176ef08a Mon Sep 17 00:00:00 2001 From: James Howe <675056+OrangeDog@users.noreply.github.com> Date: Thu, 4 Jun 2020 17:58:24 +0100 Subject: [PATCH] fix(config_ini): stop failing after the first application The module is called `ini_manage` but the state prefix is `ini`. --- openssh/config_ini.sls | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/openssh/config_ini.sls b/openssh/config_ini.sls index 8ff93d0..287aafa 100644 --- a/openssh/config_ini.sls +++ b/openssh/config_ini.sls @@ -15,7 +15,7 @@ sshd_config-with-ini: - repl: '\1 \2' - show_changes: True - require_in: - - ini_manage: sshd_config-with-ini + - ini: sshd_config-with-ini {%- endif %} ini.options_present: @@ -27,6 +27,4 @@ sshd_config-with-ini: {%- for k,v in sshd_config.items() %} {{ k }}: '{{ v }}' {%- endfor %} - - require: - - file: sshd_config-with-ini {%- endif %}