Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 6639ee1

Browse files
committed
Pull in updates from 'mattheath/master'
2 parents 4a77b09 + 5514136 commit 6639ee1

File tree

6 files changed

+54
-0
lines changed

6 files changed

+54
-0
lines changed

manifests/5_5_14.pp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Installs php 5.5.14
2+
#
3+
# Usage:
4+
#
5+
# include php::5_5_14
6+
class php::5_5_14 {
7+
php::version { '5.5.14': }
8+
}

manifests/5_5_15.pp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Installs php 5.5.15
2+
#
3+
# Usage:
4+
#
5+
# include php::5_5_15
6+
class php::5_5_15 {
7+
php::version { '5.5.15': }
8+
}

manifests/5_5_16.pp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Installs php 5.5.16
2+
#
3+
# Usage:
4+
#
5+
# include php::5_5_16
6+
class php::5_5_16 {
7+
php::version { '5.5.16': }
8+
}

manifests/fpm/5_5_14.pp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Launches a PHP FPM service running PHP 5.5.14
2+
# Installs PHP 5.5.14 if it doesn't already exist
3+
#
4+
# Usage:
5+
#
6+
# include php::fpm::5_5_14
7+
#
8+
class php::fpm::5_5_14 {
9+
php::fpm { '5.5.14': }
10+
}

manifests/fpm/5_5_15.pp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Launches a PHP FPM service running PHP 5.5.15
2+
# Installs PHP 5.5.15 if it doesn't already exist
3+
#
4+
# Usage:
5+
#
6+
# include php::fpm::5_5_15
7+
#
8+
class php::fpm::5_5_15 {
9+
php::fpm { '5.5.15': }
10+
}

manifests/fpm/5_5_16.pp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Launches a PHP FPM service running PHP 5.5.16
2+
# Installs PHP 5.5.16 if it doesn't already exist
3+
#
4+
# Usage:
5+
#
6+
# include php::fpm::5_5_16
7+
#
8+
class php::fpm::5_5_16 {
9+
php::fpm { '5.5.16': }
10+
}

0 commit comments

Comments
 (0)