Changeset 3716 in MondoRescue


Ignore:
Timestamp:
Aug 8, 2019, 12:32:17 AM (5 years ago)
Author:
Bruno Cornec
Message:

Ensure we have enough upload size for logs (2MB)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/ansible/roles/httpd/tasks/main.yml

    r3712 r3716  
    2727  tags: httpd
    2828
     29- name: Configure Apache upload max
     30  lineinfile: path=/etc/httpd/conf/conf.d/fcgid.conf regexp='^[     ]*FcgidMaxRequestLen ' insertafter='[   ]*^#FcgidMaxRequestLen ' line='    FcgidMaxRequestLen 2000000'
     31  notify:
     32    - restart httpd
     33  tags: httpd
     34
    2935- name: Setup httpd restart by cron
    3036  cron: name=httpd-restart minute=43 hour=23 weekday=0 user=root job="/usr/bin/systemctl restart httpd" cron_file=httpd-restart state=present backup=yes
Note: See TracChangeset for help on using the changeset viewer.