Kaynağa Gözat

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 yıl önce
ebeveyn
işleme
d0f3740c9e
İşleme yapanın e-posta adresine bağlı hesap yok
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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 Dosyayı Görüntüle

@@ -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 -%}

Yükleniyor…
İptal
Kaydet