]> gitweb.fluxo.info Git - puppet-php.git/commitdiff
Fix typo (2)
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 10 Oct 2018 17:46:52 +0000 (14:46 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 10 Oct 2018 17:46:52 +0000 (14:46 -0300)
manifests/series5/defaults.pp
manifests/series7/defaults.pp

index 0de7462d2aac6ec4d4f90a73f3d0a598aea0dcc6..b5ecebb8c90d0e17654bdae4eb927e7884ed9370 100644 (file)
@@ -1,7 +1,8 @@
 class php::series5::defaults {
   php::config {
-    'error_reporting_5'     : param => 'error_reporting',     series => '5', value => 'E_ALL & ~E_NOTICE & ~E_STRICT';
-    'post_max_size_5'       : param => 'post_max_size',       series => '5', value => '100M';
-    'upload_max_filesize_5' : param => 'upload_max_filezise', series => '5', value => '100M';
+    'error_reporting_5'          : param => 'error_reporting',     series => '5', value => 'E_ALL & ~E_NOTICE & ~E_STRICT';
+    'post_max_size_5'            : param => 'post_max_size',       series => '5', value => '100M';
+    'upload_max_filesize_5'      : param => 'upload_max_filesize', series => '5', value => '100M';
+    'upload_max_filesize_5_typo' : param => 'upload_max_filezise', series => '5', value => '100M', ensure => 'absent'; # typo
   }
 }
index 9a83a0807b9c2ac462c36df045d8027d72edc119..237882cae8d24df9b9aa755f08ff7814fc2634dd 100644 (file)
@@ -1,7 +1,8 @@
 class php::series7::defaults {
   php::config {
-    'error_reporting_7'     : param => 'error_reporting',     series => '7', value => 'E_ALL & ~E_NOTICE & ~E_STRICT';
-    'post_max_size_7'       : param => 'post_max_size',       series => '7', value => '100M';
-    'upload_max_filesize_7' : param => 'upload_max_filesize', series => '7', value => '100M';
+    'error_reporting_7'          : param => 'error_reporting',     series => '7', value => 'E_ALL & ~E_NOTICE & ~E_STRICT';
+    'post_max_size_7'            : param => 'post_max_size',       series => '7', value => '100M';
+    'upload_max_filesize_7'      : param => 'upload_max_filesize', series => '7', value => '100M';
+    'upload_max_filesize_7_typo' : param => 'upload_max_filesize', series => '7', value => '100M', ensure => 'absent'; # typo
   }
 }