rust-vmm / rust-vmm-container

Container with all dependencies required for running rust-vmm crates integration tests.
Apache License 2.0
64 stars 31 forks source link

Support SSH Git URLs for authenticated connections to private repositories #19

Open jiangliu opened 4 years ago

jiangliu commented 4 years ago

Cargo supports ssh git URLs, but the libgit2 library depends on ssh-agent to handle ssh authentication. Could we add openssh-server to support ssh git URLs?

andreeaflorescu commented 4 years ago

Where would this be used? We can add it, I just want to understand why we would need it.

jiangliu commented 4 years ago

Often we need to clone rust-vmm crates, make local changes, integrate the modifications with other components and eventually send out PRs to rust-vmm crates. The internal repository are ssh based and we want use the rust-vmm-container to support the dev process.