Digimer wrote:
> On 03/03/2011 09:51 AM, Brunner, Brian T. wrote:
>> Anybody responding to non-technical stuff with non-technical stuff is
>> degrading our signal/noise ratio.
>> Meta-discussions should be brief.
>
> #!/usr/bin/bash
> use strict;
> use warnings;
> while (1)
> {
>       my $c6_release=check_centos_org();
>       if ($c6_released)
>       {
>               yoohoo();
>               thank_devs();
>               last;
>       }
>       else
>       {
>               sleep (60*60*24);
>       }
> }
>
> </sad_attempt_at_on_topic>

No, no, no.
crontab:
1 0 * * * check_released

Check released:
#!/bin/bash
   wget -O - http:/centos.org 2>/dev/null | if [[ `grep -ic "centos 6
release"` > 0 ]]; then; echo 'CentOS 6 is out!' | mail -s "Finally"
<myemail>
# end

         mark

_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to