Browse Source

Changed php5 calls to more generic php

tags/v0.34.0
Alan McNea 11 years ago
parent
commit
7309a56ed2
6 changed files with 13 additions and 6 deletions
  1. +2
    -1
      php/curl.sls
  2. +3
    -1
      php/fpm.sls
  3. +2
    -1
      php/gd.sls
  4. +2
    -1
      php/init.sls
  5. +2
    -1
      php/mcrypt.sls
  6. +2
    -1
      php/mysql.sls

+ 2
- 1
php/curl.sls View File

@@ -3,8 +3,9 @@ include:

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

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

{% endif %}

+ 3
- 1
php/fpm.sls View File

@@ -3,10 +3,12 @@ include:

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

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


+ 2
- 1
php/gd.sls View File

@@ -3,8 +3,9 @@ include:

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

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

{% endif %}

+ 2
- 1
php/init.sls View File

@@ -3,8 +3,9 @@ include:

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

php5:
php:
pkg.installed:
- name: php5
- order: 175

{% endif %}

+ 2
- 1
php/mcrypt.sls View File

@@ -3,8 +3,9 @@ include:

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

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

{% endif %}

+ 2
- 1
php/mysql.sls View File

@@ -3,8 +3,9 @@ include:

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

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

{% endif %}

Loading…
Cancel
Save