Browse Source

Added my stuff

tags/v0.34.0
Alan McNea 11 years ago
parent
commit
fa56b3dcee
8 changed files with 83 additions and 0 deletions
  1. +10
    -0
      php/apc.sls
  2. +10
    -0
      php/curl.sls
  3. +13
    -0
      php/fpm.sls
  4. +10
    -0
      php/gd.sls
  5. +10
    -0
      php/init.sls
  6. +10
    -0
      php/mcrypt.sls
  7. +10
    -0
      php/mysql.sls
  8. +10
    -0
      php/pear.sls

+ 10
- 0
php/apc.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php-apc:
pkg.installed:
- order: 180

{% endif %}

+ 10
- 0
php/curl.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5-curl:
pkg.installed:
- order: 180

{% endif %}

+ 13
- 0
php/fpm.sls View File

@@ -0,0 +1,13 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5-fpm:
pkg.installed:
- order: 175
service.running:
- enable: True
- order: 455

{% endif %}

+ 10
- 0
php/gd.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5-gd:
pkg.installed:
- order: 180

{% endif %}

+ 10
- 0
php/init.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5:
pkg.installed:
- order: 175

{% endif %}

+ 10
- 0
php/mcrypt.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5-mcrypt:
pkg.installed:
- order: 180

{% endif %}

+ 10
- 0
php/mysql.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php5-mysql:
pkg.installed:
- order: 180

{% endif %}

+ 10
- 0
php/pear.sls View File

@@ -0,0 +1,10 @@
include:
- core.apt

{% if grains['os']=="Ubuntu" %}

php-pear:
pkg.installed:
- order: 180

{% endif %}

Loading…
Cancel
Save