From 13e7784d6cb49efe79279f1e98d3982a1be7e00d Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 22 Sep 2018 11:21:16 -0400 Subject: [PATCH] Update install.yml --- roles/wordpress/tasks/install.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/wordpress/tasks/install.yml b/roles/wordpress/tasks/install.yml index 46651709b..57d36b244 100644 --- a/roles/wordpress/tasks/install.yml +++ b/roles/wordpress/tasks/install.yml @@ -56,11 +56,11 @@ line: "{{ item.line }}" when: wordpress_raise_php_limits with_items: - - { regexp: '^upload_max_filesize', line: 'upload_max_filesize 64M ; default is 2M' } - - { regexp: '^post_max_size', line: 'post_max_size 128M ; default is 8M' } - - { regexp: '^memory_limit', line: 'memory_limit 256M ; default is 128M' } - - { regexp: '^max_execution_time', line: 'max_execution_time 300 ; default is 30' } - - { regexp: '^max_input_time', line: 'max_input_time 300 ; default is 60' } + - { regexp: '^upload_max_filesize', line: 'upload_max_filesize = 64M ; default is 2M' } + - { regexp: '^post_max_size', line: 'post_max_size = 128M ; default is 8M' } + - { regexp: '^memory_limit', line: 'memory_limit = 256M ; default is 128M' } + - { regexp: '^max_execution_time', line: 'max_execution_time = 300 ; default is 30' } + - { regexp: '^max_input_time', line: 'max_input_time = 300 ; default is 60' } # - name: Rename /library/wordpress* to /library/wordpress # shell: if [ ! -d {{ wp_abs_path }} ]; then mv {{ wp_abs_path }}* {{ wp_abs_path }}; fi