EPG process

jaaae

Inactive User
Joined
Oct 25, 2005
Messages
17
Reaction score
0
Hi,

Is there a process that runs the EPG ?

The reason I ask is that I have yet to find an image that doesn't regulary loose my EPG and I'd like to add a script to restart it periodically.

Cheers
J
 
don't know what happened there....I only clicked once! :)
 
killall -9 sectionsd
/bin/sectionsd


damn...theres no cron so I can't schedule it :(

oh well
 
sorted it.....


#!/bin/bash
loop=1
while [ $loop ]; do
killall -9 sectionsd
/bin/sectionsd
sleep 3600
done

Don't you love it when u figure it out yourself :)
 
Back
Top