2014-04-20 10:42:31 +00:00
|
|
|
<div .col-sm-9 .jumbotron>
|
2013-10-11 04:45:46 +00:00
|
|
|
<h2>
|
|
|
|
Consistency checks
|
|
|
|
<p>
|
|
|
|
Checking the contents of a repository periodically will ensure that #
|
|
|
|
your data is in good shape. Any problems that are detected will #
|
|
|
|
be automatically fixed.
|
|
|
|
<p>
|
|
|
|
Running the consistency check involves reading all the files in the #
|
|
|
|
repository, which can take a long time if it's large. Running just a #
|
|
|
|
little at a time will eventually check the whole repository.
|
2013-10-29 20:48:06 +00:00
|
|
|
$if (not (null scheduledchecks))
|
2013-10-11 06:57:36 +00:00
|
|
|
<p>
|
|
|
|
Currently scheduled checks:
|
2013-10-29 20:48:06 +00:00
|
|
|
$forall c <- scheduledchecks
|
2013-10-24 16:56:13 +00:00
|
|
|
^{showFsckForm False c}
|
2013-10-14 20:05:10 +00:00
|
|
|
<div style="margin-left: 5em">
|
2013-10-24 16:56:13 +00:00
|
|
|
^{showFsckStatus c}
|
2013-10-11 04:45:46 +00:00
|
|
|
<p>
|
2013-10-29 20:48:06 +00:00
|
|
|
$if null (recommendedchecks)
|
|
|
|
Add a check:
|
|
|
|
^{showFsckForm True (defaultFsck Nothing)}
|
|
|
|
$else
|
2014-04-17 23:58:27 +00:00
|
|
|
<span .glyphicon .glyphicon-warning-sign></span> #
|
2013-10-29 20:48:06 +00:00
|
|
|
Some repositories are not yet checked. #
|
|
|
|
Please consider adding these checks:
|
|
|
|
$forall c <- recommendedchecks
|
|
|
|
^{showFsckForm True c}
|
|
|
|
<h3>
|
|
|
|
Configuration
|
|
|
|
^{showFsckPreferencesForm}
|