ソースを参照

Merge pull request #62 from cybacolt/master

use False as default, and test boolean, rather than none
tags/v0.34.0
Forrest 9年前
コミット
a81c52924c
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      php/ng/installed.jinja

+ 2
- 2
php/ng/installed.jinja ファイルの表示

@@ -21,8 +21,8 @@
{% endif %}

{% if grains['os_family']=="Debian" and (state == 'cli' or state == 'fpm' or state == 'php') %}
{% set use_ppa = salt['pillar.get']('php:use_ppa', none) %}
{% if use_ppa is not none %}
{% set use_ppa = salt['pillar.get']('php:use_ppa', False) %}
{% if use_ppa %}

{% set ppa_name = salt['pillar.get']('php:ppa_name', 'ondrej/php5') %}


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