소스 검색

Use home and conf_dir from map.jinja

to reduce duplication of constants
tags/v0.55.0
Bernhard M. Wiedemann 6 년 전
부모
커밋
8c780fa63f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      nginx/common.sls

+ 2
- 2
nginx/common.sls 파일 보기

@@ -1,7 +1,7 @@
{% from "nginx/map.jinja" import nginx as nginx_map with context %}
{% set nginx = pillar.get('nginx', {}) -%}
{% set home = nginx.get('home', '/var/www') -%}
{% set conf_dir = nginx.get('conf_dir', '/etc/nginx') -%}
{% set home = nginx.get('home', nginx_map.home) -%}
{% set conf_dir = nginx.get('conf_dir', nginx_map.conf_dir) -%}
{% set conf_template = nginx.get('conf_template', 'salt://nginx/templates/config.jinja') -%}

{{ home }}:

Loading…
취소
저장