View previous topic :: View next topic |
Author |
Message |
Keepun n00b
Joined: 04 Feb 2012 Posts: 13
|
Posted: Tue Jul 02, 2013 4:19 pm Post subject: Need to Emerge option to skip the fail packages. |
|
|
Need to Emerge option to skip the fail packages.
To put the system update for the night is now difficult because at 200 packages of 50 can there be a mistake, and the remaining 150 will not be updated.
I want to
Code: | #!/bin/sh
emerge -uND @world
revdep-rebuild -i
shutdown -h now |
always worked, and in the morning I'll deal with fail packages.
Now dev-python/notify-python failed.
To automatically add --exclude and run emerge packages.
For example:
Code: | emerge -uND --autoexclude=y @world
>>> dev-python/notify-python failed.
emerge -uND --autoexclude=y --exclude=notify-python @world # it's auto
|
|
|
Back to top |
|
|
Josef.95 Advocate
Joined: 03 Sep 2007 Posts: 4679 Location: Germany
|
Posted: Tue Jul 02, 2013 4:47 pm Post subject: |
|
|
man emerge wrote: | --keep-going [ y | n ]
Continue as much as possible after an error. When an error occurs, dependencies are recalculated for remaining packages and any with unsatisfied dependencies are automatically
dropped. Also see the related --skipfirst option. |
|
|
Back to top |
|
|
Naib Watchman
Joined: 21 May 2004 Posts: 6069 Location: Removed by Neddy
|
Posted: Tue Jul 02, 2013 8:23 pm Post subject: |
|
|
^^ that will do it _________________ #define HelloWorld int
#define Int main()
#define Return printf
#define Print return
#include <stdio>
HelloWorld Int {
Return("Hello, world!\n");
Print 0; |
|
Back to top |
|
|
|