Bläddra i källkod

Merge pull request #27 from ckng/features/redis

Added PHP Redis module
tags/v0.34.0
Wolodja Wentland 10 år sedan
förälder
incheckning
03b320eeb2
5 ändrade filer med 21 tillägg och 0 borttagningar
  1. +10
    -0
      README.rst
  2. +2
    -0
      php/map.jinja
  3. +2
    -0
      php/ng/map.jinja
  4. +2
    -0
      php/ng/redis.sls
  5. +5
    -0
      php/redis.sls

+ 10
- 0
README.rst Visa fil

@@ -119,6 +119,11 @@ Installs the php-mysqlnd package.

Installs the php-pear package.

``php.redis``
------------

Installs the php-redis package.

``php.pgsql``
-------------

@@ -300,6 +305,11 @@ Installs the php-mysqlnd package.

Installs the php-pear package.

``php.ng.redis``
---------------

Installs the php-redis package.

``php.ng.pgsql``
----------------


+ 2
- 0
php/map.jinja Visa fil

@@ -17,6 +17,7 @@
'mysqlnd_pkg': 'php5-mysqlnd',
'pear_pkg': 'php-pear',
'soap_pkg': 'php-soap',
'redis_pkg': 'php5-redis',
'fpm_service': 'php5-fpm',
'xml_pkg': 'php5-xml',
'imagick_pkg': 'php5-imagick',
@@ -49,6 +50,7 @@
'mysqlnd_pkg': 'php-mysqlnd',
'pear_pkg': 'php-pear',
'soap_pkg': 'php-soap',
'redis_pkg': 'php-redis',
'fpm_service': 'php-fpm',
'xml_pkg': 'php-xml',
'imagick_pkg': 'php-pecl-imagick',

+ 2
- 0
php/ng/map.jinja Visa fil

@@ -19,6 +19,7 @@
'pear': 'php-pear',
'soap': 'php-soap',
'xml': 'php5-xmlrpc',
'redis': 'php5-redis',
'imagick': 'php5-imagick',
'suhosin': 'php5-suhosin',
'imap': 'php5-imap',
@@ -63,6 +64,7 @@
'pear': 'php-pear',
'soap': 'php-soap',
'xml': 'php-xml',
'redis': 'php-redis',
'imagick': 'php-imagick',
'suhosin': 'php-suhosin',
'imap': 'php-imap',

+ 2
- 0
php/ng/redis.sls Visa fil

@@ -0,0 +1,2 @@
{% set state = 'redis' %}
{% include "php/ng/installed.jinja" %}

+ 5
- 0
php/redis.sls Visa fil

@@ -0,0 +1,5 @@
{% from "php/map.jinja" import php with context %}

php-redis:
pkg.installed:
- name : {{ php.redis_pkg }}

Laddar…
Avbryt
Spara