diff --git a/templates/etc/__php__/mods-available/apcu.ini.j2 b/templates/etc/__php__/mods-available/apcu.ini.j2 index 59afd0c..18a9896 100644 --- a/templates/etc/__php__/mods-available/apcu.ini.j2 +++ b/templates/etc/__php__/mods-available/apcu.ini.j2 @@ -1,7 +1,3 @@ -; -; {{ ansible_managed }} -; - extension=apcu.so ; apc.enabled can be set to 0 to disable APC @@ -23,3 +19,7 @@ apc.file_update_protection={{ php_apc_file_update_protection }} apc.slam_defense={{ php_apc_slam_defense }} ; Verification with ctime will avoid problems caused by programs such as svn or rsync by making sure inodes haven't changed since the last stat apc.stat_ctime={{ php_apc_stat_ctime }} + +; +; {{ ansible_managed }} +; diff --git a/templates/etc/__php__/mods-available/opcache.ini.j2 b/templates/etc/__php__/mods-available/opcache.ini.j2 index 77b6ab3..04590f0 100644 --- a/templates/etc/__php__/mods-available/opcache.ini.j2 +++ b/templates/etc/__php__/mods-available/opcache.ini.j2 @@ -1,7 +1,3 @@ -; -; {{ ansible_managed }} -; - ; configuration for php ZendOpcache module ; priority=05 zend_extension=opcache.so @@ -15,3 +11,7 @@ opcache.max_wasted_percentage={{ php_opcache_max_wasted_percentage }} opcache.validate_timestamps={{ php_opcache_validate_timestamps }} opcache.revalidate_freq={{ php_opcache_revalidate_freq }} opcache.max_file_size={{ php_opcache_max_file_size }} + +; +; {{ ansible_managed }} +; diff --git a/templates/etc/__php__/mods-available/xdebug.ini.j2 b/templates/etc/__php__/mods-available/xdebug.ini.j2 index df932e2..ef76561 100644 --- a/templates/etc/__php__/mods-available/xdebug.ini.j2 +++ b/templates/etc/__php__/mods-available/xdebug.ini.j2 @@ -1,7 +1,3 @@ -; -------------------------------------- -; {{ ansible_managed }} -; -------------------------------------- - ; configuration for php xdebug module ; priority=20 zend_extension=xdebug.so @@ -63,3 +59,6 @@ xdebug_var_display_max_children={{ php_xdebug_var_display_max_children }} xdebug_var_display_max_data={{ php_xdebug_var_display_max_data }} xdebug_var_display_max_depth={{ php_xdebug_var_display_max_depth }} +; -------------------------------------- +; {{ ansible_managed }} +; --------------------------------------