Slashbunny / puppet-phpfpm

Manages php-fpm daemon and pool configuration
GNU General Public License v3.0
10 stars 29 forks source link

Default $pool_dir for Redhat has extra slash #7

Closed mineichen closed 9 years ago

mineichen commented 9 years ago

manifests/params.pp oversupplies an extra slash for $pool_dir in redhat-systems at line 143 $pool_dir = '/etc/php-fpm.d/'

This results in a wrong path in php-fpm.conf: include=/etc/php-fpm.d//*.conf

Temoporary solution: class { 'phpfpm': pool_dir => '/etc/php-fpm.d', }

Slashbunny commented 9 years ago

Thanks for the bug report!