puppet-php icon indicating copy to clipboard operation
puppet-php copied to clipboard

Multiple ini declarations

Open meecect opened this issue 11 years ago • 4 comments

what syntax do I use if I want to set more than one ini setting? For example, I want this:

upload_max_filesize = 200M memory_limit=512M

Originally, I had this defined:

php::ini { "memory_limit": value => 'memory_limit=512M' }

which set the memory limit, but maybe I was doing it wrong. When I tried this:

php::ini { "memory_limit": value => 'memory_limit=512M' }

php::ini { "upload_max_filesize": value => 'upload_max_filesize = 200M' }

I get a duplicate declaration error, which makes sense, I guess. I'm just too new to puppet syntax to figure this out, but it's probably something simple. Any help?

meecect avatar Oct 03 '14 22:10 meecect

I hink you should use a syntax like: php::ini { "memory_limit": value => '512M' }

and be sure you have an unique title (here 'memory_limit') for each php::ini resource

alvagante avatar Oct 04 '14 07:10 alvagante

I had tried that first. In that case all I get in the ini file is '512M'. I currently have this:

php::ini { "ini_settings": value => ' memory_limit=512M upload_max_filesize = 200M' }

and that works, but it seems clunky. I agree it probably should work as you proposed, but it doesn't seem to.

meecect avatar Oct 15 '14 14:10 meecect

Uhm, sorry, I didn't look well at the define. It's intended to create single .ini files, not to manage lines inside the php.ini file:

""" With this you can alter/add a php ini file for a specific sapi target or for both cli and apache2 (default for Ubuntu|Debian|Mint|SLES|OpenSuSE) """

alvagante avatar Oct 16 '14 07:10 alvagante

Why not use augeas?

            php::augeas {
                    'php-memorylimit':
                                    entry  => 'PHP/memory_limit',
                                    value  => 512M,
                    'php-date_timezone':
                                    entry  => 'Date/date.timezone',
                                    value  => 'Europe/London',
                    }

catalinpan avatar Feb 23 '15 16:02 catalinpan