example42 / puppet-php

A puppet module for php. According to Example42 NextGen spec.
Other
45 stars 62 forks source link

Missing define for php::pecl::config #30

Closed dol closed 11 years ago

dol commented 11 years ago

The define for 'php::pecl::config' is missing. It's documented but not present. ;-(

Should be similar to 'php::pear::config'.

alvagante commented 11 years ago

I added the define but to be honest haven't managed to make pecl config-set work, even running it manually. It seems actually absolutely the same of pear config-set...

dol commented 11 years ago

Thx for the fix. You're right. pear and pecl config-set refer to the same settings. -> $HOME/.pearrc It's is definitely the same:

<?php
# Snippet from /usr/share/php/peclcmd.php
define('PEAR_RUNTYPE', 'pecl');
require_once 'pearcmd.php';

Sorry, for bothering.