Add sqlite support
This commit is contained in:
parent
6eabe99dfb
commit
8194cba6aa
10
README.rst
10
README.rst
@ -134,6 +134,11 @@ Installs the php-pgsql package.
|
||||
|
||||
Installs the php-soap package.
|
||||
|
||||
``php.sqlite``
|
||||
--------------
|
||||
|
||||
Installs the php-sqlite package,
|
||||
|
||||
``php.suhosin``
|
||||
---------------
|
||||
|
||||
@ -320,6 +325,11 @@ Installs the php-pgsql package.
|
||||
|
||||
Installs the php-soap package.
|
||||
|
||||
``php.ng.sqlite``
|
||||
-----------------
|
||||
|
||||
Installs the php-sqlite package,
|
||||
|
||||
``php.ng.suhosin``
|
||||
------------------
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
'mysqlnd_pkg': 'php5-mysqlnd',
|
||||
'pear_pkg': 'php-pear',
|
||||
'soap_pkg': 'php-soap',
|
||||
'sqlite_pkg': 'php-sqlite',
|
||||
'redis_pkg': 'php5-redis',
|
||||
'fpm_service': 'php5-fpm',
|
||||
'xml_pkg': 'php5-xml',
|
||||
@ -50,6 +51,7 @@
|
||||
'mysqlnd_pkg': 'php-mysqlnd',
|
||||
'pear_pkg': 'php-pear',
|
||||
'soap_pkg': 'php-soap',
|
||||
'sqlite_pkg': 'php-sqlite',
|
||||
'redis_pkg': 'php-redis',
|
||||
'fpm_service': 'php-fpm',
|
||||
'xml_pkg': 'php-xml',
|
||||
|
@ -19,6 +19,7 @@
|
||||
'mysqlnd': 'php5-mysqlnd',
|
||||
'pear': 'php-pear',
|
||||
'soap': 'php-soap',
|
||||
'sqlite': 'php-sqlite',
|
||||
'xml': 'php5-xmlrpc',
|
||||
'redis': 'php5-redis',
|
||||
'imagick': 'php5-imagick',
|
||||
@ -67,6 +68,7 @@
|
||||
'mysqlnd': 'php-mysqlnd',
|
||||
'pear': 'php-pear',
|
||||
'soap': 'php-soap',
|
||||
'sqlite': 'php-sqlite',
|
||||
'xml': 'php-xml',
|
||||
'redis': 'php-redis',
|
||||
'imagick': 'php-imagick',
|
||||
|
2
php/ng/sqlite.sls
Normal file
2
php/ng/sqlite.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'sqlite' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
5
php/sqlite.sls
Normal file
5
php/sqlite.sls
Normal file
@ -0,0 +1,5 @@
|
||||
{% from "php/map.jinja" import php with context %}
|
||||
|
||||
php-sqlite:
|
||||
pkg.installed:
|
||||
- name: {{ php.sqlite_pkg }}
|
Loading…
Reference in New Issue
Block a user