Saltstack Official PHP Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

9 роки тому
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 роки тому
9 роки тому
9 роки тому
9 роки тому
9 роки тому
9 роки тому
9 роки тому
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {% from "php/map.jinja" import php with context %}
  2. {% set install_file = php.lookup.pkgs.local_bin + '/' + php.lookup.pkgs.composer_bin %}
  3. {% if not salt['config.get']('sudo_user') %}
  4. {% set salt_user = salt['config.get']('user', 'root') %}
  5. {% else %}
  6. {% set salt_user = salt['config.get']('sudo_user', 'root') %}
  7. {% endif %}
  8. {% set salt_user_home = salt['user.info'](salt_user).get('home', '/root') %}
  9. include:
  10. - php
  11. {% if grains['os_family'] == 'FreeBSD' %}
  12. - php.filter
  13. - php.hash
  14. - php.json
  15. - php.mbstring
  16. - php.openssl
  17. - php.phar
  18. {% endif %}
  19. get-composer:
  20. file.managed:
  21. - name: {{ php.lookup.pkgs.temp_dir }}/installer
  22. - mode: '0755'
  23. - unless: test -f {{ install_file }}
  24. - source: https://getcomposer.org/installer
  25. - source_hash: https://composer.github.io/installer.sig
  26. - require:
  27. - pkg: php
  28. install-composer:
  29. cmd.run:
  30. - name: php {{ php.lookup.pkgs.temp_dir }}/installer --filename={{ php.lookup.pkgs.composer_bin }} --install-dir={{ php.lookup.pkgs.local_bin }}
  31. - unless: test -f {{ install_file }}
  32. - env:
  33. - HOME: {{ salt_user_home }}
  34. - require:
  35. - file: get-composer
  36. # Get composer version date and check if older than 60day (defaultvalue of COMPOSER_DEV_WARNING_TIME)
  37. # then it's time to run `composer selfupdate`
  38. #
  39. # It would be nice if composer had a command line switch to get this, but it doesn't,
  40. # and so we just grep for it.
  41. #
  42. update-composer:
  43. cmd.run:
  44. - name: "{{ install_file }} selfupdate"
  45. {% if grains['os_family'] == 'FreeBSD' %}
  46. - unless: test $(date -v+60d -j -f "%Y-%m-%d %H:%M:%S" "$({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") -gt $(date "+%s")
  47. {% else %}
  48. - unless: test $(date -d "60 days $({{ install_file }} --version | cut -d ' ' -f 4,5)" "+%s") -gt $(date "+%s")
  49. {% endif %}
  50. - cwd: {{ php.lookup.pkgs.local_bin }}
  51. - env:
  52. - HOME: {{ salt_user_home }}
  53. - require:
  54. - cmd: install-composer