It's because the /usr/sbin/yup doesn't contain any information about SP3
there is an if-query:
########
for SVN in $YUP_SUBVERSIONS; do
if [ "$SVN" = "GA" ]; then
SVNSUFFIX=""
SUBCHANNELS="-Updates"
elif [ "$SVN" = "SP1" ]; then
SVNSUFFIX="-SP1"
SUBCHANNELS=$YUP_SP_SUBCHANS
elif [ "$SVN" = "SP2" ]; then
SVNSUFFIX="-SP2"
SUBCHANNELS=$YUP_SP_SUBCHANS
fi
###########
So I added a case with SP3
###############
elif [ "$SVN" = "SP3" ]; then
SVNSUFFIX="-SP3"
SUBCHANNELS=$YUP_SP_SUBCHANS
Originally Posted by marcydc
|
I've changed /etc/sysconfig/yup to say SP3 instead of SP2 for SLES10. I know the files are there at https://nu.novell.com/repo/$RCE/SLES10-SP3-Online/ because I can log in with my creditial uid and pw and can see them there.
It just returns with this:
Using config file /etc/sysconfig/yup
YUP_CURL =/usr/bin/curl
YUP_SERVER =nu.novell.com
YOU_SERVER =you.novell.com
YUP_DEST_DIR =/tmp/yup
YUP_PATSIZE =+20000
YUP_MTIME =-8
YUP_ARCH =s390x
YUP_SUBVERSIONS=SP3
YUP_SP_SUBCHANS=-Updates
YUP_PRODUCTS =SLES10
YUP_CURLPARAMS =--basic --verbose --remote-time --fail
and no more.
|