├── .gitignore ├── EXAMPLE ├── LICENSE ├── Modulefile ├── README.md ├── manifests ├── apache2.pp ├── apache2 │ ├── config.pp │ └── install.pp ├── conf.pp ├── config.pp ├── extra.pp ├── fpm.pp ├── fpm │ ├── config.pp │ ├── install.pp │ ├── pool.pp │ └── service.pp ├── init.pp ├── install.pp ├── module.pp └── params.pp ├── spec ├── spec.opts └── spec_helper.rb ├── templates └── fpm-pool.conf.erb └── tests └── init.pp /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | pkg/ 3 | -------------------------------------------------------------------------------- /EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/EXAMPLE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/Modulefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/README.md -------------------------------------------------------------------------------- /manifests/apache2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/apache2.pp -------------------------------------------------------------------------------- /manifests/apache2/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/apache2/config.pp -------------------------------------------------------------------------------- /manifests/apache2/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/apache2/install.pp -------------------------------------------------------------------------------- /manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/conf.pp -------------------------------------------------------------------------------- /manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/config.pp -------------------------------------------------------------------------------- /manifests/extra.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/extra.pp -------------------------------------------------------------------------------- /manifests/fpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/fpm.pp -------------------------------------------------------------------------------- /manifests/fpm/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/fpm/config.pp -------------------------------------------------------------------------------- /manifests/fpm/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/fpm/install.pp -------------------------------------------------------------------------------- /manifests/fpm/pool.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/fpm/pool.pp -------------------------------------------------------------------------------- /manifests/fpm/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/fpm/service.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/install.pp -------------------------------------------------------------------------------- /manifests/module.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/module.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/fpm-pool.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saz/puppet-php/HEAD/templates/fpm-pool.conf.erb -------------------------------------------------------------------------------- /tests/init.pp: -------------------------------------------------------------------------------- 1 | include php 2 | --------------------------------------------------------------------------------