ソースを参照

Update 00-mpm.conf.jinja

Change mpm.conf template for RedHat family systems.

The code currently written will always expand to true as a pillar.get() call will return None in case the pillar is non existing, which is also considered defined.
Fix this.
ixs-patch-1
Andreas Thienemann 2年前
コミット
d0f3740c9e
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      apache/files/RedHat/conf.modules.d/00-mpm.conf.jinja

+ 1
- 1
apache/files/RedHat/conf.modules.d/00-mpm.conf.jinja ファイルの表示

@@ -4,7 +4,7 @@

{% set mpm_module = 'mpm_prefork' -%}
{% set mpm_param = salt['pillar.get']('apache:mod_mpm_prefork', {}) -%}
{% if pillar.get('apache:mod_mpm_worker') is defined -%}
{% if pillar.get('apache:mod_mpm_worker', None) -%}
{% set mpm_module = 'mpm_worker' -%}
{% set mpm_param = salt['pillar.get']('apache:mod_mpm_worker', {}) -%}
{% else -%}

読み込み中…
キャンセル
保存