Peter Humphrey writes:
> On Thursday 28 July 2011 21:48:15 Dale wrote:
>
>> I have wondered that too. The process is sort of started but it's not
>> actually compiling either. I wonder how we could know for sure?
>
> Easy. "emerge --fetchonly <blah>" first, then start the real work.
I have acron job running which does an eix-sync, followed by emerge
-DuNf @world. And I also call a little script to check for GLSAs (Gentoo
Linux Security Advisories):
#!/bin/bash
glsas=$( glsa-check -n -t all |
grep -v "^This system is affected by the following GLSAs:$" )
glsa-check -n -l $glsas 2> /dev/null
Wonko