Changeset 14266 in hybrid for branches/releng-11/nanobsd


Ignore:
Timestamp:
Dec 19, 2018, 8:46:29 AM (6 years ago)
Author:
rick
Message:

Fix monit too late on disk full actions

Waiting till 99% will potentially cause monit or other processes to fail
causing the system not to be rebooted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/releng-11/nanobsd/files/usr/local/etc/monitrc

    r14265 r14266  
    272272
    273273  check filesystem etc with path /dev/md0
    274     if space usage > 99% then exec /sbin/reboot
     274    if space usage > 90% then exec /sbin/reboot
    275275
    276276  check filesystem var with path /dev/md1
    277     if space usage > 99% then exec /sbin/reboot
     277    if space usage > 90% then exec /sbin/reboot
    278278
    279279  check filesystem tmp with path /dev/md2
    280     if space usage > 99% then exec /sbin/reboot
     280    if space usage > 90% then exec /sbin/reboot
    281281
    282282#  check filesystem cfg with path /dev/ufs/WLIMGs3
Note: See TracChangeset for help on using the changeset viewer.