I'm doing my first steps in Puppet and ran into a problem. I've installed PHP on a Linux server and I want to do some slightly changes to php.ini
file. I don't want to overwrite the whole ini
file with one from repository, just change/create one simple config value.
I want to ensure, that the property upload_max_filesize
in php.ini
has the value of 10M
.
How can I achieve this?