浏览代码

Merge pull request #203 from bmwiedemann/master

Add SUSE support and 2 small fixes
tags/v0.55.0
N 6 年前
父节点
当前提交
43f9b37c77
没有帐户链接到提交者的电子邮件
共有 3 个文件被更改,包括 24 次插入3 次删除
  1. +2
    -2
      nginx/common.sls
  2. +21
    -0
      nginx/map.jinja
  3. +1
    -1
      nginx/templates/config.jinja

+ 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 }}:

+ 21
- 0
nginx/map.jinja 查看文件

@@ -41,4 +41,25 @@
'install_prefix': '/usr/local/nginx',
'make_flags': '-j2'
},
'Suse': {
'apache_utils': 'apache2-utils',
'group_action': 'pkg.installed',
'group_pkg': 'patterns-devel-base-devel_rpm_build',
'libpcre_dev': 'pcre-devel',
'libssl_dev': 'openssl-devel',
'pid_path': '/run/nginx.pid',
'package': 'nginx',
'default_user': 'nginx',
'default_group': 'nginx',
'disable_before_rename': True,
'old_init_disable': 'chkconfig --del nginx',
'use_upstart': False,
'use_sysvinit': False,
'home': '/srv/www',
'conf_dir': '/etc/nginx',
'log_dir': '/var/log/nginx',
'sbin_dir': '/usr/sbin',
'install_prefix': '/usr/local/nginx',
'make_flags': '-j2'
},
}, grain='os_family', merge=salt['pillar.get']('nginx:lookup'), default='Debian') %}

+ 1
- 1
nginx/templates/config.jinja 查看文件

@@ -13,7 +13,7 @@ worker_rlimit_nofile {{ worker_rlimit_nofile }};
{% set error_log_level = nginx.get('error_log',{}).get('level', 'warn') -%}
error_log {{ ' '.join([error_log_location, error_log_level]) }};
pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
{% if salt['test.provider']('service') != 'systemd' -%}
{% if not 'systemd' in salt['test.provider']('service') -%}
daemon {{ nginx.get('daemon', 'on') }};
{%- endif %}


正在加载...
取消
保存