├── .gitignore ├── .gitmodules ├── README.md ├── Vagrantfile ├── data └── .gitkeep └── puppet ├── manifests └── base.pp └── modules └── magento ├── files └── etc │ └── php5 │ └── conf.d │ ├── pdo.ini │ └── pdo_mysql.ini └── manifests ├── init.pp ├── mysql.pp ├── n98magerun.pp ├── nginx.pp ├── php.pp └── php_fpm.pp /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .idea 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/Vagrantfile -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puppet/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/manifests/base.pp -------------------------------------------------------------------------------- /puppet/modules/magento/files/etc/php5/conf.d/pdo.ini: -------------------------------------------------------------------------------- 1 | extension=pdo.so -------------------------------------------------------------------------------- /puppet/modules/magento/files/etc/php5/conf.d/pdo_mysql.ini: -------------------------------------------------------------------------------- 1 | extension=pdo_mysql.so -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/mysql.pp -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/n98magerun.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/n98magerun.pp -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/nginx.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/nginx.pp -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/php.pp -------------------------------------------------------------------------------- /puppet/modules/magento/manifests/php_fpm.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmuench/Magento-Vagrant-Puppet-Nginx/HEAD/puppet/modules/magento/manifests/php_fpm.pp --------------------------------------------------------------------------------