{% extends 'layout.html' %} {% block title %}RAID Control{%endblock%} {% block title_html %}

System RAID Control

{% endblock %} {% block content %}
The purpose of this page is to allow for an orderly removal of a failing disk drive from the unit. On submitting the form the failing disk drive will be removed from the multi-disk (RAID) array and the unit will be powered down. You MUST record the serial number displayed here and verify that the disk you are removing displays this serial number.
{% include 'formfields.html' %} {% for array in status.devices %} {% if array.recovery %} {% endif %} {% endfor %}
ArrayDevices
{{array.name}}
    {% for device in array.devices %}
  • {{device.name}}
  • {% endfor %}
Rebuild in progress
{{ array.recovery.progress }}
{{ array.recovery.finish }}
{% if can_proceed %} {% else %} Cannot proceed {% endif %}
{% endblock %}