Duncan Webb a écrit :
> Not surprised when looking at the code, I've applied this patch which
> should sort out this no message problem.
> Index: src/helpers/makelogos.py
> ===================================================================
> --- src/helpers/makelogos.py    (revision 9266)
> +++ src/helpers/makelogos.py    (working copy)
> @@ -62,6 +62,6 @@
>          output_file = config.TV_LOGOS + '/' + channel + '.png'
>          try:
>              img.save(output_file)
> -        except IOError:
> -            pass
> +        except IOError, e:
> +            print e
>
>   
Again, thanks for this one !
> I really don't like using /tmp for this type of data as it is really not
> temporary data, so what I do is make a directory /var/lib/freevo and set
> the following in local_config.py
> # Overlay data in internal format for CDs, DVDs, images, etc
> OVERLAY_DIR = '/var/lib/freevo/overlay'
> # Recording schedule and favourites
> TV_RECORD_SCHEDULE = '/var/lib/freevo/record_schedule.xml'
> # TV channel logos directory
> TV_LOGOS = '/var/lib/freevo/logos'
> # XMLTV EPG file.
> XMLTV_FILE = '/var/lib/freevo/TV.xml'
>
>   
I didn't know the meaning of half these variables :-( soo sad.

But in fact, my trouble was coming from the fact that I probably one 
time started freevo as root.

So, I did like you said, but I did this change on the (newly created) 
/var/lib/freevo :

chown freevo:freevo /var/lib/freevo
chmod 6775 /var/lib/freevo

So, if all is going well, root should no more do any harm to my dir :-)

Thanks,

-- 
Pascal Schirrmann


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to