Saltstack Official PHP Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
517B

  1. # Manages the php-hhvm service.
  2. {% from "php/map.jinja" import php with context %}
  3. include:
  4. - php.hhvm.install
  5. {% if salt['grains.get']('os_family') == 'Debian' -%}
  6. hhvm_repo:
  7. pkgrepo.managed:
  8. - name: deb http://dl.hhvm.com/{{ salt['grains.get']('os')|lower }} {{ salt['grains.get']('oscodename') }} main
  9. - file: /etc/apt/sources.list.d/hhvm.list
  10. - keyid: 0x5a16e7281be7a449
  11. - keyserver: keyserver.ubuntu.com
  12. - refresh_db: True
  13. - require_in:
  14. - pkg: php_install_hhvm
  15. {%- endif %}