Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thias/puppet-php
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: oxilion/puppet-php
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Aug 21, 2019

  1. Added pcre.jit parameter

    PCRE Whether PCRE's just-in-time compilation is going to be used.
    carbrich committed Aug 21, 2019
    Copy the full SHA
    8da3840 View commit details
Showing with 8 additions and 0 deletions.
  1. +1 −0 manifests/ini.pp
  2. +7 −0 templates/php.ini-el6.erb
1 change: 1 addition & 0 deletions manifests/ini.pp
Original file line number Diff line number Diff line change
@@ -82,6 +82,7 @@
$default_socket_timeout = '60',
$date_timezone = undef,
$pcre_backtrack_limit = undef,
$pcre_jit = undef,
$pcre_recursion_limit = undef,
$phar_readonly = undef,
$sendmail_path = '/usr/sbin/sendmail -t -i',
7 changes: 7 additions & 0 deletions templates/php.ini-el6.erb
Original file line number Diff line number Diff line change
@@ -1029,6 +1029,13 @@ date.timezone = <%= @date_timezone %>
;sqlite3.extension_dir =

[Pcre]
;PCRE Whether PCRE's just-in-time compilation is going to be used.
;Available since PHP 7.0.0, default value "1"
; https://www.php.net/manual/en/pcre.configuration.php#ini.pcre.jit
<% if @pcre_jit -%>
pcre.jit = <%= @pcre_jit %>
<% end -%>

;PCRE library backtracking limit.
; http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.backtrack-limit
<% if @pcre_backtrack_limit -%>