[fix] Further .sh extension removal

* Remove more .sh extensions
* Edit jinja markup to prevent whitespace trimming
This commit is contained in:
William Wernert
2020-01-23 15:06:40 -05:00
parent d2a7ef1e64
commit 4a288a0d63
7 changed files with 12 additions and 12 deletions

View File

@@ -1,5 +1,7 @@
{%- set ES = salt['pillar.get']('master:mainip', '') -%}
#!/bin/bash
{% set ES = salt['pillar.get']('master:mainip', '') %}
{%- set MASTER = grains['master'] %}
# Wait for ElasticSearch to come up, so that we can query for version infromation
echo -n "Waiting for ElasticSearch..."
COUNT=0

View File

@@ -1,4 +1,6 @@
{%- set ES = salt['pillar.get']('master:mainip', '') -%}
#!/bin/bash
{% set ES = salt['pillar.get']('master:mainip', '') %}
# Wait for ElasticSearch to come up, so that we can query for version infromation
echo -n "Waiting for ElasticSearch..."
COUNT=0

View File

@@ -6,7 +6,7 @@ crossclusterson:
- shell: /bin/bash
- cwd: /opt/so
- runas: socore
- source: salt://utility/bin/crossthestreams.sh
- source: salt://utility/bin/crossthestreams
- template: jinja
{% endif %}
@@ -16,6 +16,6 @@ fixsearch:
- shell: /bin/bash
- cwd: /opt/so
- runas: socore
- source: salt://utility/bin/eval.sh
- source: salt://utility/bin/eval
- template: jinja
{% endif %}