Hi,<br><br>I am trying to make a rule to control the failback on the resources. I want during working days from 06:00 to 23:00 and on weekend from 08:00 to 16:00 to have <br>resource-stickiness 1000 and on the left hours zero, so cluster can perform failback any resource which failed over during the working hours.<br>
I wrote the following but I also get error [1]. I am not xml guru so I must have done some stupid mistake here. Any hints?<br><br><br>&lt;rsc_defaults&gt;<br>  &lt;meta_attributes id=&quot;working-hours&quot;&gt;<br>   &lt;rule id=&quot;working-hours-rule&quot; boolean_op=&quot;or&quot; score=&quot;2&quot;&gt;<br>
     &lt;date_expression id=&quot;six-to-eleven&quot; operation=&quot;date_spec&quot;&gt;<br>       &lt;date_spec id=&quot;six-to-elevene-Mon-Fri-spec&quot; hours=&quot;6-23&quot; weekdays=&quot;1-5&quot;/&gt;<br>     &lt;/date_expression&gt;<br>
     &lt;date_expression id=&quot;eight-six&quot; operation=&quot;date_spec&quot;&gt;<br>       &lt;date_spec id=&quot;eight-six-Sat-Sun-spec&quot; hours=&quot;8-16&quot; weekdays=&quot;6-7&quot;/&gt;<br>     &lt;/date_expression&gt;<br>
   &lt;/rule&gt;<br>    &lt;nvpair id=&quot;working-hours-stickiness&quot; name=&quot;resource-stickiness&quot; value=&quot;INFINITY&quot;/&gt;<br>  &lt;/meta_attributes&gt;<br>  &lt;meta_attributes id=&quot;after-hours&quot; score=&quot;1&quot;&gt;<br>
    &lt;nvpair id=&quot;after-hours-stickiness&quot; name=&quot;resource-stickiness&quot; value=&quot;0&quot;/&gt;<br>  &lt;/meta_attributes&gt;<br>&lt;/rsc_defaults&gt;<br><br>[1]<br>cibadmin -V --replace --obj_type rsc_defaults --xml-file tmp.xml<br>
Call cib_replace failed (-47): Update does not conform to the configured schema/DTD<br><br><br>