1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Source: vagrant-sshfs
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Hans-Christoph Steiner <hans@eds.org>
Build-Depends: debhelper-compat (= 12),
gem2deb,
rake,
vagrant (>= 1.5)
Standards-Version: 4.4.1
Vcs-Git: https://salsa.debian.org/ruby-team/vagrant-sshfs.git
Vcs-Browser: https://salsa.debian.org/ruby-team/vagrant-sshfs
Homepage: https://github.com/dustymabe/vagrant-sshfs
Testsuite: autopkgtest-pkg-ruby
XS-Ruby-Versions: all
Rules-Requires-Root: no
Package: vagrant-sshfs
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ruby | ruby-interpreter,
openssh-sftp-server,
vagrant,
${misc:Depends},
${shlibs:Depends}
Description: vagrant plugin that adds synced folder support with sshfs
This is a vagrant plugin that adds synced folder support for mounting
folders from the Vagrant host into the Vagrant guest via FUSE
SSHFS. In the default mode it does this by executing the SSHFS client
software within the guest, which creates an SSH connection from the
Vagrant guest back to the Vagrant host.
.
The benefits of this approach:
- Works on any host platform and hypervisor type - Windows, Linux, Mac
OS X - Virtualbox, Libvirt, Hyper-V, VMWare
- Seamlessly works on remote Vagrant solutions - Works with vagrant
aws/openstack/etc.. plugins
.
The drawbacks with this approach:
- Performance is worse than an implementation like NFS
- There must be `sftp-server` software on the Vagrant host
|