<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    <blockquote type="cite"><span class="Apple-style-span"
        style="border-collapse: separate; color: rgb(0, 0, 0);
        font-family: 'Times New Roman'; font-style: normal;
        font-variant: normal; font-weight: normal; letter-spacing:
        normal; line-height: normal; orphans: 2; text-indent: 0px;
        text-transform: none; white-space: normal; widows: 2;
        word-spacing: 0px; font-size: medium;">
        <pre>After seeing this bug, I checked on my cron jobs and found
they were not working either. After a bit of investigation
I found the crontabs problem:

<a href="https://bugzilla.redhat.com/show_bug.cgi?id=653132">https://bugzilla.redhat.com/show_bug.cgi?id=653132</a>

Work around: Find any crontab that is using run-parts
and make sure you add a trailing / to the directory name
passed as an argument. (I think :-).</pre>
      </span></blockquote>
    Ya,<br>
    <br>
    &nbsp;&nbsp;&nbsp; I found this from the diffs of the old run-parts and new.<br>
    I added the slash and am waiting to see if things work.<br>
    <br>
    OLD:<br>
    &lt; for i in $(LC_ALL=C; echo $1/*[^~,]) ; do<br>
    ---<br>
    NEW:<br>
    &gt; for i in $(LC_ALL=C; echo $1*[^~,]) ; do<br>
    <br>
    Thanks<br>
    Alan<br>
  </body>
</html>