Browse Source

fix standard.tmpl

with salt-ssh-2016.11.3 it errored out with
TemplateNotFound: apache/map.jinja

and we were already passing in the 'apache' data as 'map'
from standard.sls
tags/v0.37.4
Bernhard M. Wiedemann 7 years ago
parent
commit
f25d7707cf
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      apache/vhosts/standard.tmpl

+ 2
- 3
apache/vhosts/standard.tmpl View File

@@ -1,5 +1,4 @@
{# Define default values here so the template below can just focus on layout #}
{%- from "apache/map.jinja" import apache with context -%}
{%- set sitename = site.get('ServerName', id) -%}

{%- set vals = {
@@ -90,7 +89,7 @@

<Directory "{{ path }}">
{% if dvals.get('Options') != False %}Options {{ dvals.Options }}{% endif %}
{% if apache.use_require %}
{% if map.use_require %}
{% if dvals.get('Require') != False %}Require {{dvals.Require}}{% endif %}
{% else %}
{% if dvals.get('Order') != False %}Order {{ dvals.Order }}{% endif %}
@@ -114,7 +113,7 @@
} %}

<Location "{{ path }}">
{% if apache.use_require %}
{% if map.use_require %}
{%- if lvals.get('Require') != False %}Require {{lvals.Require}}{% endif %}
{% else %}
{%- if lvals.get('Order') != False %}Order {{ lvals.Order }}{% endif %}

Loading…
Cancel
Save