Merge pull request #102 from webscale-formulas/master
add some missing modules for debian and ubuntu
This commit is contained in:
commit
2fe123b852
2
php/ng/dev.sls
Normal file
2
php/ng/dev.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'dev' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/geshi.sls
Normal file
2
php/ng/geshi.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'geshi' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/gettext.sls
Normal file
2
php/ng/gettext.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'gettext' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
@ -391,10 +391,13 @@
|
||||
'apcu': 'php5-apcu',
|
||||
'cgi': 'php5-cgi',
|
||||
'cli': 'php5-cli',
|
||||
'dev': ['php5-dev','build-essential'],
|
||||
'oauth': 'php5-oauth',
|
||||
'apache2': 'libapache2-mod-php5',
|
||||
'curl': 'php5-curl',
|
||||
'gearman': 'php5-gearman',
|
||||
'gettext': 'php-gettext',
|
||||
'geshi': 'php-geshi',
|
||||
'fpm': 'php5-fpm',
|
||||
'hhvm': 'hhvm',
|
||||
'gd': 'php5-gd',
|
||||
@ -407,11 +410,20 @@
|
||||
'memcached': 'php5-memcached',
|
||||
'mysql': 'php5-mysql',
|
||||
'mysqlnd': 'php5-mysqlnd',
|
||||
'mdb2': 'php-mdb2',
|
||||
'mdb2-driver-mysql': 'php-mdb2-driver-mysql',
|
||||
'mdb2-driver-pgsql': 'php-mdb2-driver-pgsql',
|
||||
'pear': 'php-pear',
|
||||
'pspell': 'php5-pspell',
|
||||
'snmp': 'php5-snmp',
|
||||
'soap': 'php-soap',
|
||||
'seclib': 'php-seclib',
|
||||
'ssh2': 'php5-ssh2',
|
||||
'sqlite': 'php5-sqlite',
|
||||
'svn': 'php5-svn',
|
||||
'tidy': 'php5-tidy',
|
||||
'tcpdf': 'php-tcpdf',
|
||||
'twig': 'php5-twig',
|
||||
'xcache': 'php5-xcache',
|
||||
'xdebug': 'php5-xdebug',
|
||||
'xsl': 'php5-xsl',
|
||||
@ -487,6 +499,7 @@
|
||||
'apcu': 'php5-apcu',
|
||||
'cgi': 'php5-cgi',
|
||||
'cli': 'php5-cli',
|
||||
'dev': ['php5-dev','build-essential'],
|
||||
'oauth': 'php5-oauth',
|
||||
'apache2': 'libapache2-mod-php5',
|
||||
'curl': 'php5-curl',
|
||||
@ -496,6 +509,8 @@
|
||||
'gd': 'php5-gd',
|
||||
'gmp': 'php5-gmp',
|
||||
'geoip': 'php5-geoip',
|
||||
'gettext': 'php-gettext',
|
||||
'geshi': 'php-geshi',
|
||||
'intl': 'php5-intl',
|
||||
'mbstring': 'php5',
|
||||
'mcrypt': 'php5-mcrypt',
|
||||
@ -503,11 +518,20 @@
|
||||
'memcached': 'php5-memcached',
|
||||
'mysql': 'php5-mysql',
|
||||
'mysqlnd': 'php5-mysqlnd',
|
||||
'mdb2': 'php-mdb2',
|
||||
'mdb2-driver-mysql': 'php-mdb2-driver-mysql',
|
||||
'mdb2-driver-pgsql': 'php-mdb2-driver-pgsql',
|
||||
'pear': 'php-pear',
|
||||
'pspell': 'php5-pspell',
|
||||
'snmp': 'php5-snmp',
|
||||
'seclib': 'php-seclib',
|
||||
'soap': 'php-soap',
|
||||
'ssh2': 'php5-ssh2',
|
||||
'sqlite': 'php5-sqlite',
|
||||
'svn': 'php5-svn',
|
||||
'tidy': 'php5-tidy',
|
||||
'tcpdf': 'php5-tcpdf',
|
||||
'twig': 'php5-twig',
|
||||
'xcache': 'php5-xcache',
|
||||
'xdebug': 'php5-xdebug',
|
||||
'xsl': 'php5-xsl',
|
||||
|
2
php/ng/mdb2/init.sls
Normal file
2
php/ng/mdb2/init.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'mdb2' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
3
php/ng/mdb2/mysql.sls
Normal file
3
php/ng/mdb2/mysql.sls
Normal file
@ -0,0 +1,3 @@
|
||||
{% set state = 'mdb2-driver-mysql' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
||||
{% include "php/ng/mdb2/init.sls" %}
|
3
php/ng/mdb2/pgsql.sls
Normal file
3
php/ng/mdb2/pgsql.sls
Normal file
@ -0,0 +1,3 @@
|
||||
{% set state = 'mdb2-driver-pgsql' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
||||
{% include "php/ng/mdb2/init.sls" %}
|
2
php/ng/seclib.sls
Normal file
2
php/ng/seclib.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'seclib' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/ssh2.sls
Normal file
2
php/ng/ssh2.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'ssh2' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/svn.sls
Normal file
2
php/ng/svn.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'svn' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/tcpdf.sls
Normal file
2
php/ng/tcpdf.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'tcpdf' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
2
php/ng/twig.sls
Normal file
2
php/ng/twig.sls
Normal file
@ -0,0 +1,2 @@
|
||||
{% set state = 'twig' %}
|
||||
{% include "php/ng/installed.jinja" %}
|
Loading…
Reference in New Issue
Block a user