layman sync before eix-update
This commit is contained in:
parent
8673d15831
commit
3309f6c3d9
|
@ -135,6 +135,12 @@ if [ $STAGE_CNT -eq $STAGE ]; then
|
||||||
[ 0 -ne $? ] && echo "Stage $STAGE: failed to clear /etc/portage/rsync.excludes ;-( =======" && exit $STAGE
|
[ 0 -ne $? ] && echo "Stage $STAGE: failed to clear /etc/portage/rsync.excludes ;-( =======" && exit $STAGE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# layman syncronization
|
||||||
|
if [ `which layman 2>/dev/null` ]; then
|
||||||
|
$NICE_CMD layman -S
|
||||||
|
[ 0 -ne $? ] && echo "Stage $STAGE: layman synchronization failed ;-( =======" && exit $STAGE
|
||||||
|
fi
|
||||||
|
|
||||||
# eix update
|
# eix update
|
||||||
if [ `which eix-update 2>/dev/null` ]; then
|
if [ `which eix-update 2>/dev/null` ]; then
|
||||||
$NICE_CMD eix-update
|
$NICE_CMD eix-update
|
||||||
|
@ -147,12 +153,6 @@ if [ $STAGE_CNT -eq $STAGE ]; then
|
||||||
[ 0 -ne $? ] && echo "Stage $STAGE: eix-remote update failed ;-( =======" && exit $STAGE
|
[ 0 -ne $? ] && echo "Stage $STAGE: eix-remote update failed ;-( =======" && exit $STAGE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# layman syncronization
|
|
||||||
if [ `which layman 2>/dev/null` ]; then
|
|
||||||
$NICE_CMD layman -S
|
|
||||||
[ 0 -ne $? ] && echo "Stage $STAGE: layman synchronization failed ;-( =======" && exit $STAGE
|
|
||||||
fi
|
|
||||||
|
|
||||||
# remind to upgrade Xorg input drivers
|
# remind to upgrade Xorg input drivers
|
||||||
tmp=`qlist -IC x11-base/xorg-server`
|
tmp=`qlist -IC x11-base/xorg-server`
|
||||||
if [ "" != "$tmp" ]; then
|
if [ "" != "$tmp" ]; then
|
||||||
|
|
Loading…
Reference in New Issue