aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Wagenknecht <dwagenknecht@emlix.com>2022-03-14 10:13:57 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-14 13:33:12 +0000
commit1bc9f800ffc9b740cc1de0132ed04f07eadb3479 (patch)
tree15145f0bb390c5ae728c8ca3ca8f3963021a3bd1
parent23a6f11b089b14382c21d431edf34fa7224c66bf (diff)
downloadbitbake-1bc9f800ffc9b740cc1de0132ed04f07eadb3479.tar.gz
fetch2: ssh: username and password are optional
Support URLs like ssh://HOST/PATH. They were previously not recognized due to a missing @ sign. Signed-off-by: Daniel Wagenknecht <dwagenknecht@emlix.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit a2aa18bd27dac8902e52b466cb7118f71367d3dc) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/ssh.py b/lib/bb/fetch2/ssh.py
index 2c8557e1f..a104c9eb1 100644
--- a/lib/bb/fetch2/ssh.py
+++ b/lib/bb/fetch2/ssh.py
@@ -40,9 +40,9 @@ __pattern__ = re.compile(r'''
( # Optional username/password block
(?P<user>\S+) # username
(:(?P<pass>\S+))? # colon followed by the password (optional)
- )?
(?P<cparam>(;[^;]+)*)? # connection parameters block (optional)
@
+ )?
(?P<host>\S+?) # non-greedy match of the host
(:(?P<port>[0-9]+))? # colon followed by the port (optional)
/