php-formula/php/ng/cli/install.sls

18 lines
536 B
Plaintext
Raw Normal View History

2014-05-20 21:59:25 +02:00
{% set state = 'cli' %}
{% include "php/ng/installed.jinja" %}
2017-09-01 23:59:43 +02:00
{%- if salt['grains.get']('os_family') == "Debian" %}
{% set current_php = salt['alternatives.show_current']('php') %}
{% set phpng_version = salt['pillar.get']('php:ng:version', '7.0')|string %}
php_{{ phpng_version }}_link:
alternatives.set:
- name: php
- path: /usr/bin/php{{ phpng_version }}
- require_in:
- pkg: php_install_{{ state }}
- onlyif:
- which php
- test {{ current_php }} != $(which php{{ phpng_version }})
{% endif %}