I'm trying to configure a simple resource that depends on a local clone.<br>The configuration is below.<br>For those familiar with the Veritas Cluster Server, I'm trying to get something like permanent resources.<br>
Unfortunately, the simple resource (foo) will not start until *both* bar clones are up.<br>The documentation says:<br>"Colocation of a regular (or group) resource with a clone means that the 
resource can run on any machine with an active copy of the clone."<br>Which seems to suggest what I want to do, however, it also says:<br>"Ordering constraints behave slightly differently for clones. In the 
example below, apache-stats will wait until all copies of the clone that
 need to be started have done so before being started itself."<br>Which describes the behavior I'm seeing and don't want.<br>Any ideas?<br>Alan<br>---<br><br>primitive bar ocf:pacemaker:DummyNoStart \<br>    op start timeout=90 \<br>
    op stop timeout=100 \<br>    op monitor interval=10 on-fail=restart start-delay=10 \<br>    meta failure-timeout=1 migration-threshold=0<br>clone bar-clone foo-bar<br>primitive foo ocf:pacemaker:DummySlow \<br>    op start timeout=90 \<br>
    op stop timeout=100 \<br>    op monitor interval=10 timeout=600<br>order foo-order mandatory: bar-clone foo<br>colocation col-colo inf: foo bar-clone<br><br>