<div dir="ltr">thanks a lot !<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/7/5 Lars Ellenberg <span dir="ltr"><<a href="mailto:lars.ellenberg@linbit.com" target="_blank">lars.ellenberg@linbit.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Fri, Jul 05, 2013 at 04:52:35PM +0200, andreas graeper wrote:<br>
> when i wrote a script handled by ocf:heartbeat:anything i.e. that is<br>
> signalling the cron-daemon to reload crontabs<br>
> when crontab file is enabled by symlink:start and disabled by symlink:stop<br>
><br>
> how can i achieve that the script runs after symlink :start and :stop ?<br>
> when i define order-constraint R1 then R2 this implizit means R1:start ,<br>
> R2:start and R2:stop, R1:stop ?<br>
><br>
<br>
</div>Not an answer to that specific question,<br>
rather a "why even bother" suggestion:<br>
<br>
You say:<br>
<div class="im">> > two nodes active/passive and fetchmail as cronjob shall run on active only.<br>
<br>
</div>How do you know the node is "active"?<br>
Maybe some specific file system is mounted?<br>
Great.  You have files and directories<br>
which are only visible on an "active" node.<br>
<br>
Why not prefix your cron job lines with<br>
test -e /this/file/only/visible/on/active || exit 0; real cron command follows<br>
 or<br>
cd /some/dir/only/on/active || exit 0; real cron command<br>
<br>
 or a wrapper, if that looks too ugly<br>
only-on-active real cron command<br>
<br>
/bin/only-on-active:<br>
#!/bin/sh<br>
same-active-test-as-above || exit 0<br>
"$@" # do the real cron command<br>
<br>
        Lars<br>
<div class="im"><br>
> 2013/7/5 andreas graeper <<a href="mailto:agraeper@googlemail.com">agraeper@googlemail.com</a>><br>
><br>
> > hi,<br>
> > two nodes active/passive and fetchmail as cronjob shall run on active only.<br>
> ><br>
> > i use ocf:heartbeat:symlink to move / rename<br>
> ><br>
> > /etc/cron.d/jobs <> /etc/cron.d/jobs.disable<br>
> ><br>
> > i read anywhere crond ignores files with dot.<br>
> ><br>
> > but new experience: crond needs to restarted or signalled.<br>
> ><br>
> > how this is done best within pacemaker ?<br>
> > is clone for me ?<br>
> ><br>
> ><br>
> > thanks in advance<br>
> > andreas<br>
<br>
<br>
</div>--<br>
: Lars Ellenberg<br>
: LINBIT | Your Way to High Availability<br>
: DRBD/HA support and consulting <a href="http://www.linbit.com" target="_blank">http://www.linbit.com</a><br>
<br>
DRBD® and LINBIT® are registered trademarks of LINBIT, Austria.<br>
<br>
_______________________________________________<br>
Pacemaker mailing list: <a href="mailto:Pacemaker@oss.clusterlabs.org">Pacemaker@oss.clusterlabs.org</a><br>
<a href="http://oss.clusterlabs.org/mailman/listinfo/pacemaker" target="_blank">http://oss.clusterlabs.org/mailman/listinfo/pacemaker</a><br>
<br>
Project Home: <a href="http://www.clusterlabs.org" target="_blank">http://www.clusterlabs.org</a><br>
Getting started: <a href="http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf" target="_blank">http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf</a><br>
Bugs: <a href="http://bugs.clusterlabs.org" target="_blank">http://bugs.clusterlabs.org</a><br>
</blockquote></div><br></div>