[feature] ssh-agent: new -A option (like -a) that overwrites existing sockets

2023-09-13 Thread Moritz Fain
Most of the code is already there; it's basically just adding a new flag. Happy to hear your feedback! --- diff --git a/usr.bin/ssh/ssh-agent.1 b/usr.bin/ssh/ssh-agent.1 index 6815eb834d3..731a1cf913d 100644 --- a/usr.bin/ssh/ssh-agent.1 +++ b/usr.bin/ssh/ssh-agent.1 @@ -76,6 +76,10

Re: [feature] ssh-agent: new -A option (like -a) that overwrites existing sockets

2023-09-13 Thread Omar Polo
On 2023/09/13 15:08:40 +0200, Moritz Fain wrote: > Most of the code is already there; it's basically just adding a new flag. > > Happy to hear your feedback! can't comment on the diff itself, but the patch was mangled and so it doesn't apply. > --- a/usr.bin/ssh/ssh-agent.c > +++

Re: [feature] ssh-agent: new -A option (like -a) that overwrites existing sockets

2023-09-13 Thread Andreas Kähäri
On Wed, Sep 13, 2023 at 03:08:40PM +0200, Moritz Fain wrote: > Most of the code is already there; it's basically just adding a new flag. > > Happy to hear your feedback! My initial reaction is that it's easy to run "rm -f" before starting the agent with the existing "-a" option. The code seems

Re: [feature] ssh-agent: new -A option (like -a) that overwrites existing sockets

2023-09-13 Thread Steffen Nurpmeso
Andreas Kähäri wrote in : |On Wed, Sep 13, 2023 at 03:08:40PM +0200, Moritz Fain wrote: |> Most of the code is already there; it's basically just adding a new flag. |> |> Happy to hear your feedback! | |My initial reaction is that it's easy to run "rm -f" before starting |the agent with

Re: [OpenSMTPD] Setting personal mailserver

2023-09-13 Thread Sagar Acharya
Hello, I would like to contribute here and add a patch which in case of failed s2s connection digs the SRV records and tries on other port. Can a dev working on OpenSMTPD please show me the logic and part and file on which I could add code on? Thanking you Sagar Acharya

sed(1): a,i,c text escape leading whitespace

2023-09-13 Thread Luka Krmpotić
Hello, I've noticed a bug with whitespace indentation in sed. Summary: For a,i,c `text` the leading whitespace that is intended to stay in output should be escaped, or else be ignored. The latter is not the case for sed(1) - it includes leading whitespace of `text` in the output, even if it is