vagrant-scp icon indicating copy to clipboard operation
vagrant-scp copied to clipboard

Copy files to a Vagrant VM via SCP.

Results 14 vagrant-scp issues
Sort by recently updated
recently updated
newest added

on windows, the following now works: ```bash vagrant scp ':d:/temp/filename-*.7z' . ``` to clarify, this now works with the [Windows flavor of OpenSSH, Win32-OpenSSH](https://github.com/PowerShell/Win32-OpenSSH). I tested this by copying a...

`vagrant` allows to specify a custom _SSH configuration file_ with ```ruby Vagrant.configure("2") do |config| config.ssh.config = ".ssh/config" [...] end ``` This patch makes `scp` use this custom _SSH configuration file_

Hi I was wondering if it's possible to copy files from one VM directly to another. I seem to get this error when I try ```sh vagrant scp vm1:/home/vagrant/projects/project-build/project.rpm vm2:~...

Typical failure mode: ```shell $ vagrant scp zorch default: Warning: Permanently added '[127.0.0.1]:2222' (ECDSA) to the list of known hosts. Received disconnect from 127.0.0.1 port 2222:2: Too many authentication failures...

Hi! I was wondering if it would be possible to copy more than one file to the VM with this plugin. As far as I know, currently we can only...

`vagrant scp file target:somePath` works but `vagrant scp file taget` doesn't and will trigger an infinite loop that traverses all "up" vms, n times, where n is the total number...

Every time I run this command, I get the following message: > Warning: Permanently added '[127.0.0.1]:2222' (ECDSA) to the list of known hosts. Isn't it possible to suppress this message?

Similar to #36 except this only sets `IdentitiesOnly` when `config.ssh.keys_only` is true.

Please consider merging this change. Tested to be working. Fixes https://github.com/invernizzi/vagrant-scp/issues/25

Without this option, ssh will also try other key pairs available in ~/.ssh/; if there are too many of these this can cause an authentication error.