On Sat, 28 Sep 2013 10:31:07 -0500 inode0 inode0@gmail.com wrote:
On Sat, Sep 28, 2013 at 6:21 AM, Frank Murphy frankly3d@gmail.com wrote:
Still haven't mastered bash, not even a jack (
Have strung some command(s) together in /etc/cron.daily
#!/bin/bash ## Download no-bebug rawhide kernel /usr/bin/cd /var/cache/yum/x86_64/20/fedora-rawhide-kernel-nodebug-source/packages && \ /usr/bin/reposync --source -n =fedora-rawhide-kernel-nodebug kernel && \ ## used to rebuild new no-debug ## Rawhide kernels for non eol FedoraN /usr/local/bin/mock-kernel ---> (which is below question) Question: How do I prevent the above line from happening if nothing new was downloaded?
While there might be a cleaner way to detect that something was downloaded what I do is log the output from reposync and then
I decided to split it as two operations, using inotifywait on the watched dir. it would then kickin mock as required.