Skip to content

Commit b10b9ec

Browse files
Merge pull request #39 from mdzidic/patch-1
Fix init.sls parsing
2 parents fdbcde9 + eb2f8c5 commit b10b9ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

node/init.sls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{% set pillar_get = salt['pillar.get'] -%}
22
include:
3-
{%- if pillar_get('node:install_from_source') %}
3+
{% if pillar_get('node:install_from_source') %}
44
- .source
5-
{%- elif pillar_get('node:install_from_binary') %}
5+
{% elif pillar_get('node:install_from_binary') %}
66
- .binary
7-
{%- else %}
7+
{% else %}
88
- .pkg
9-
{%- endif %}
9+
{% endif %}
1010
- .config

0 commit comments

Comments
 (0)