This repository has been archived by the owner on Dec 2, 2020. It is now read-only.
forked from mattheath/puppet-php
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from boxen/54-versions
Add 5.4.18 --> 5.4.26
- Loading branch information
Showing
36 changed files
with
333 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.18 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_18 | ||
# | ||
class php::5_4_18 { | ||
php::version { '5.4.18': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.19 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_19 | ||
# | ||
class php::5_4_19 { | ||
php::version { '5.4.19': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.20 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_20 | ||
# | ||
class php::5_4_20 { | ||
php::version { '5.4.20': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.21 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_21 | ||
# | ||
class php::5_4_21 { | ||
php::version { '5.4.21': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.22 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_22 | ||
# | ||
class php::5_4_22 { | ||
php::version { '5.4.22': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.23 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_23 | ||
# | ||
class php::5_4_23 { | ||
php::version { '5.4.23': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.24 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_24 | ||
# | ||
class php::5_4_24 { | ||
php::version { '5.4.24': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.25 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_25 | ||
# | ||
class php::5_4_25 { | ||
php::version { '5.4.25': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Installs php 5.4.26 | ||
# | ||
# Usage: | ||
# | ||
# include php::5_4_26 | ||
# | ||
class php::5_4_26 { | ||
php::version { '5.4.26': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.18 | ||
# Installs PHP 5.4.18 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_18 | ||
# | ||
class php::fpm::5_4_18 { | ||
php::fpm { '5.4.18': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.19 | ||
# Installs PHP 5.4.19 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_19 | ||
# | ||
class php::fpm::5_4_19 { | ||
php::fpm { '5.4.19': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.20 | ||
# Installs PHP 5.4.20 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_20 | ||
# | ||
class php::fpm::5_4_20 { | ||
php::fpm { '5.4.20': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.21 | ||
# Installs PHP 5.4.21 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_21 | ||
# | ||
class php::fpm::5_4_21 { | ||
php::fpm { '5.4.21': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.22 | ||
# Installs PHP 5.4.22 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_22 | ||
# | ||
class php::fpm::5_4_22 { | ||
php::fpm { '5.4.22': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.23 | ||
# Installs PHP 5.4.23 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_23 | ||
# | ||
class php::fpm::5_4_23 { | ||
php::fpm { '5.4.23': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.24 | ||
# Installs PHP 5.4.24 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_24 | ||
# | ||
class php::fpm::5_4_24 { | ||
php::fpm { '5.4.24': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.25 | ||
# Installs PHP 5.4.25 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_25 | ||
# | ||
class php::fpm::5_4_25 { | ||
php::fpm { '5.4.25': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Launches a PHP FPM service running PHP 5.4.26 | ||
# Installs PHP 5.4.26 if it doesn't already exist | ||
# | ||
# Usage: | ||
# | ||
# include php::fpm::5_4_26 | ||
# | ||
class php::fpm::5_4_26 { | ||
php::fpm { '5.4.26': } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_18" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.18") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_19" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.19") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_20" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.20") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_21" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.21") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_22" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.22") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_23" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.23") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_24" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.24") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_25" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.25") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::fpm::5_4_26" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__fpm("5.4.26") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_18" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.18") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_19" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.19") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_20" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.20") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_21" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.21") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_22" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.22") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_23" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.23") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_24" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.24") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_25" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.25") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'spec_helper' | ||
|
||
describe "php::5_4_26" do | ||
let(:facts) { default_test_facts } | ||
|
||
it do | ||
should contain_php__version("5.4.26") | ||
end | ||
end |