Saltstack Official PHP Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

New structure for new Ubuntu PPA and other fixes (#113) * Initial commit for new branch * Quick change to base test files * Updated map.jinja, added `php` dependency for all subformulas * Fixing mongo module and map.jinja needed OpenSSL dev libraries * Should be final changes needed for Mongo module * Updating Suhosin package since many distros don't have package in their repos anymore * Generalizing suhosin module, and updating pillar.example for new PPA * Adding addtional logic for RedHat based families to Suhosin * Initial commit of NG refactored map.jinja file * Deleting FFMpeg state file since the module is quite old, and has been replaced by using a Composer library. See https://github.com/PHP-FFMpeg/PHP-FFMpeg for details * Updating NG formulas for new definitions * Removing 'twig' as a state since it can be installed via Composer * Changes to installed.jinja to set correct PHP path based on version * NG Composer and NG Suhosin changes * Version bump and deleting README for deleted states * Finished refactor of NG map.jinja file * Adding trailing commas (forgot them earler) * Adding changes list, and modifying map file for missing definitions when using Ubuntu 16.04 and NOT using a PPA * Changes needed after performing testing on RHEL 7 * Changes needed for Ubuntu Trusty without using PPA * Removing testing files; keep on local * Map changes needed after testing Debian Jessie * Changed needed for Debian Wheezy * Adding more pkgs for Arch Linux support * More ArchLinux support * Stupid tabs * Removing extra line breaks, and using the general "use_external_repo" in the future if DotDeb (Debian) or Webtactic (RedHat) * Accoutning for Precise `phpenmod` and others
8 лет назад
6 лет назад
1234567891011121314151617181920212223242526
  1. # Manages the php cli main ini file
  2. {% from "php/ng/map.jinja" import php with context %}
  3. {% from "php/ng/ini.jinja" import php_ini %}
  4. {% set settings = php.ini.defaults %}
  5. {% for key, value in php.cli.ini.settings.items() %}
  6. {% if settings[key] is defined %}
  7. {% do settings[key].update(value) %}
  8. {% else %}
  9. {% do settings.update({key: value}) %}
  10. {% endif %}
  11. {% endfor %}
  12. {% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
  13. {% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
  14. {% for version in pillar_php_ng_version %}
  15. {% set first_version = pillar_php_ng_version[0]|string %}
  16. {% set ini = php.lookup.cli.ini|replace(first_version, version) %}
  17. php_cli_ini_{{ version }}:
  18. {{ php_ini(ini, php.cli.ini.opts, settings) }}
  19. {% endfor %}
  20. {% else %}
  21. php_cli_ini:
  22. {{ php_ini(php.lookup.cli.ini, php.cli.ini.opts, settings) }}
  23. {% endif %}