tramp-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: tramp (2.1.15-pre); [Feature Request] Multihop sudo


From: David Abrahams
Subject: Re: tramp (2.1.15-pre); [Feature Request] Multihop sudo
Date: Mon, 20 Apr 2009 14:06:45 -0400


On Apr 20, 2009, at 10:14 AM, Michael Albinus wrote:

David Abrahams <address@hidden> writes:

OK, this is *almost* what I needed.  I really want a way to say
*don't
multihop when it's localhost*, so I can have a fallback rule that
uses
`.+' as the pattern for the hostname.  Any chance of that one?

What about

   (add-to-list 'tramp-default-proxies-alist
                '("\\`localhost\\'" nil nil))

as first rule in `tramp-default-proxies-alist'?


Unfortunately, that won't match because TRAMP seems to use the result of

 $ hostname

But that's the same as (system-name) in ELisp. So you can write

   (add-to-list 'tramp-default-proxies-alist
                `(,(format "\\`%s\\'" (system-name)) nil nil))



Yes, of course I can. However, as I wrote, this is not achievable with the customize UI, and I think it's an important enough use case that it should be made possible with customize.

--
David Abrahams
BoostPro Computing
http://boostpro.com








reply via email to

[Prev in Thread] Current Thread [Next in Thread]