Skip to content

Commit 7a02b93

Browse files
committed
MIT license all the things
1 parent 5f7654d commit 7a02b93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+112
-91
lines changed

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2012-2013 Christian "Jippi" Winther
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The advantage of using `php::config` over `augeas` is the anchor of dependency m
148148

149149
### PHP SAPIs
150150

151-
By default the module comes with support for mod_php (`php::apache`) and cli `php::cli`
151+
By default the module comes with support for mod_php (`php::apache`), cli `php::cli` and fpm `php::fpm`
152152

153153
### PHP modules
154154

manifests/apache.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
#
3434
# === Authors
3535
#
36-
# Christian Winther <[email protected]>
36+
# Christian "Jippi" Winther <[email protected]>
3737
#
3838
# === Copyright
3939
#
40-
# Copyright 2012-2013 Nodes, unless otherwise noted.
40+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4141
#
4242
class php::apache(
4343
$ensure = $php::apache::params::ensure,

manifests/apache/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::apache::params {
4242

manifests/apt.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
#
1717
# === Authors
1818
#
19-
# Christian Winther <[email protected]>
19+
# Christian "Jippi" Winther <[email protected]>
2020
#
2121
# === Copyright
2222
#
23-
# Copyright 2012-2013 Nodes, unless otherwise noted.
23+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
2424
#
2525
class php::apt(
2626
$location = 'http://packages.dotdeb.org',

manifests/cli.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::cli(
4242
$ensure = $php::cli::params::ensure,

manifests/cli/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::cli::params {
4242

manifests/composer.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
#
1717
# === Authors
1818
#
19-
# Christian Winther <[email protected]>
19+
# Christian "Jippi" Winther <[email protected]>
2020
#
2121
# === Copyright
2222
#
23-
# Copyright 2012-2013 Nodes, unless otherwise noted.
23+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
2424
#
2525
class php::composer {
2626

manifests/config.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
#
2424
# === Authors
2525
#
26-
# Christian Winther <[email protected]>
26+
# Christian "Jippi" Winther <[email protected]>
2727
#
2828
# === Copyright
2929
#
30-
# Copyright 2012-2013 Nodes, unless otherwise noted.
30+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
3131
#
3232
define php::config(
3333
$inifile,

manifests/dev.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
#
2828
# === Authors
2929
#
30-
# Christian Winther <[email protected]>
30+
# Christian "Jippi" Winther <[email protected]>
3131
#
3232
# === Copyright
3333
#
34-
# Copyright 2012-2013 Nodes, unless otherwise noted.
34+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
3535
#
3636
class php::dev(
3737
$ensure = $php::dev::params::ensure,

manifests/dev/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
#
2626
# === Authors
2727
#
28-
# Christian Winther <[email protected]>
28+
# Christian "Jippi" Winther <[email protected]>
2929
#
3030
# === Copyright
3131
#
32-
# Copyright 2012-2013 Nodes, unless otherwise noted.
32+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
3333
#
3434
class php::dev::params {
3535

manifests/extension.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
#
1818
# === Authors
1919
#
20-
# Christian Winther <[email protected]>
20+
# Christian "Jippi" Winther <[email protected]>
2121
#
2222
# === Copyright
2323
#
24-
# Copyright 2012-2013 Nodes, unless otherwise noted.
24+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
2525
#
2626
define php::extension(
2727
$ensure,

manifests/extension/apc.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::apc(
4242
$ensure = $php::extension::apc::params::ensure,

manifests/extension/apc/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::apc::params {
4242

manifests/extension/curl.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::curl(
4242
$ensure = $php::extension::curl::params::ensure,

manifests/extension/curl/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::curl::params {
4242

manifests/extension/gd.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::gd(
4242
$ensure = $php::extension::gd::params::ensure,

manifests/extension/gd/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::gd::params {
4242

manifests/extension/gearman.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::gearman(
4242
$ensure = $php::extension::gearman::params::ensure,

manifests/extension/gearman/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::gearman::params {
4242

manifests/extension/http.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::http(
4242
$ensure = $php::extension::http::params::ensure,

manifests/extension/http/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::http::params {
4242

manifests/extension/igbinary.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::igbinary(
4242
$ensure = $php::extension::igbinary::params::ensure,

manifests/extension/igbinary/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::igbinary::params {
4242

manifests/extension/imagick.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::imagick(
4242
$ensure = $php::extension::imagick::params::ensure,

manifests/extension/imagick/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::imagick::params {
4242

manifests/extension/mcrypt.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::mcrypt(
4242
$ensure = $php::extension::mcrypt::params::ensure,

manifests/extension/mcrypt/params.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
#
3333
# === Authors
3434
#
35-
# Christian Winther <[email protected]>
35+
# Christian "Jippi" Winther <[email protected]>
3636
#
3737
# === Copyright
3838
#
39-
# Copyright 2012-2013 Nodes, unless otherwise noted.
39+
# Copyright 2012-2013 Christian "Jippi" Winther, unless otherwise noted.
4040
#
4141
class php::extension::mcrypt::params {
4242

0 commit comments

Comments
 (0)