Hello All,
I've been tinkering with a old sparc box recently and noticed an odd
problem when yum updating the kernel. If I have two kernels currently
installed and use yum update to pick up a third, it's ignored. Turning
on debug shows that the new kernel is being put in a complex update, but
n
On Thu, 2013-04-18 at 11:13 -0400, Zdenek Pavlas wrote:
> > Have you tried this?
>
> I didn't set up a socks proxy
Yeh, that's what I meant ... was kind of hoping you'd found some random
socks proxy so didn't have to set one up too.
Worst case ... can you find someone who requested it at some
On 2013-04-18 11:26, Zdenek Pavlas wrote:
> ---
> yum-utils.bash | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/yum-utils.bash b/yum-utils.bash
> index 20e8e5c..6578bb3 100644
> --- a/yum-utils.bash
> +++ b/yum-utils.bash
> @@ -1,3 +1,6 @@
> +# need functions from yum.bash
> +type -t
> Have you tried this?
I didn't set up a socks proxy, but it indeed worked all
the way down to pycurl setopt(), and curl has connected
to the proxy=socks4://localhost:3000 URL, and sent some
binary junk, so it very likely works..
# nc -l -v 3000|hexdump
Connection from localhost.localdomain 4128
On Thu, 2013-04-18 at 16:01 +0200, Zdenek Pavlas wrote:
> There was a request to implement this:
> http://lists.baseurl.org/pipermail/yum/2013-February/023923.html
Pretty sure we've had multiple BZs over the years too (might want to
search for any open ones and stick them in the commit msg).
> c
There was a request to implement this:
http://lists.baseurl.org/pipermail/yum/2013-February/023923.html
curl supports socks proxies via the same setopt(PROXY, url) API
we already use for ftp/http/https proxies, so it's pretty easy.
---
yum/config.py | 3 ++-
1 file changed, 2 insertions(+), 1 del
---
yum-utils.bash | 3 +++
1 file changed, 3 insertions(+)
diff --git a/yum-utils.bash b/yum-utils.bash
index 20e8e5c..6578bb3 100644
--- a/yum-utils.bash
+++ b/yum-utils.bash
@@ -1,3 +1,6 @@
+# need functions from yum.bash
+type -t _yum >/dev/null || . $(pkg-config --variable=completionsdir
ba