Brian Cain
ea59cfdb92
Merge pull request #8895 from briancain/8697/master/add-ssh-extra-opts
...
Introduce extra_args setting for ssh configs
2017-08-21 16:26:52 -07:00
Chris Roberts
dce71a5a27
Merge pull request #8892 from StephenOrJames/patch-1
...
Remove extra shell prompt
2017-08-21 14:57:31 -07:00
Chris Roberts
380897e941
Update CHANGELOG
2017-08-21 14:56:18 -07:00
Chris Roberts
dfefa0883c
Merge pull request #8902 from poma/patch-1
...
Fix #8901
2017-08-21 14:54:52 -07:00
Chris Roberts
14aacd4ab6
Update CHANGELOG
2017-08-21 14:51:33 -07:00
Chris Roberts
93f6451261
Retain winssh_ method prefix on auth key helper
2017-08-21 14:48:52 -07:00
Rui Lopes
7fac854cf3
winssh communicator: simplify the authorized_keys file modification
2017-08-21 14:42:18 -07:00
Rui Lopes
4ab0dc19b1
winssh communicator: retain the authorized_keys file acl permissions
2017-08-21 14:42:18 -07:00
Rui Lopes
aeac480683
winssh communicator: fix public key insertion
2017-08-21 14:42:18 -07:00
Chris Roberts
927129aa39
Fix rsync test for updated rspec
2017-08-21 14:08:59 -07:00
Chris Roberts
75d0cc5e13
Update CHANGELOG
2017-08-21 13:52:11 -07:00
Chris Roberts
f32f85595e
Merge pull request #8840 from chrisroberts/rsync/ipv6
...
Format host address for rsync when IPv6
2017-08-21 13:49:58 -07:00
Chris Roberts
155cc449c4
Update CHANGELOG
2017-08-21 13:49:04 -07:00
Chris Roberts
4eb8d7a098
Merge pull request #8839 from chrisroberts/windows/req-min-ps
...
Validate powershell prior to powershell use
2017-08-21 13:48:08 -07:00
Chris Roberts
d047d4d7a6
Update CHANGELOG
2017-08-21 13:47:40 -07:00
Chris Roberts
e3231615ef
Merge pull request #8838 from chrisroberts/docker-compose/relative-volumes
...
Expand relative volume paths for compose on current cwd
2017-08-21 13:46:40 -07:00
Chris Roberts
1c763cf5e6
Expand relative volume paths for compose on current cwd
2017-08-21 13:26:19 -07:00
Chris Roberts
570c8aee49
Update CHANGELOG
2017-08-21 13:22:24 -07:00
Chris Roberts
3f8cbb121a
Merge pull request #8837 from chrisroberts/docker-compose/links
...
Split compose links if string values
2017-08-21 13:21:09 -07:00
Chris Roberts
75789b4604
Update CHANGELOG
2017-08-21 13:17:40 -07:00
Chris Roberts
18d3e5d286
Merge pull request #8831 from chrisroberts/hyperv/ipv6
...
Update guest IP address discovery for hyper-v guests.
2017-08-21 13:15:06 -07:00
Roman Semenov
fc1e4f7533
Fix #8901
2017-08-18 18:58:45 +03:00
Brian Cain
ffec0ff8d9
( #8697 ) Introduce extra_args setting for ssh configs
...
Prior to this commit, there was no way to add additional ssh arguments
within a Vagrantfile for a given vagrant machine. This commit introduces
a new option extra_args that allows users to pass in a single argument
or an array of flags that will be added onto the ssh command.
2017-08-17 09:02:20 -07:00
Justin Campbell
d014cdac65
website: Fix mailto link
2017-08-16 17:21:56 -04:00
Justin Campbell
1a93b61a35
Merge pull request #8894 from mitchellh/docs-org-migration
...
Vagrant Cloud documentation improvements
2017-08-16 17:08:55 -04:00
Justin Campbell
9db1c4b438
website: Add link to Vagrant Cloud docs source
2017-08-16 16:29:27 -04:00
Justin Campbell
6ddc418947
website: Add support link to index
2017-08-16 16:23:23 -04:00
Justin Campbell
d920a4fe46
website: Update support email address
2017-08-16 16:20:35 -04:00
Justin Campbell
04586e1ec0
website: Add link to account migration page
2017-08-16 16:13:22 -04:00
Stephen James
eaca868a76
Remove extra shell prompt
2017-08-16 01:12:28 -04:00
Brian Cain
40d5c28f3f
Update CHANGELOG
2017-08-15 14:57:15 -07:00
Brian Cain
567f26a7be
Merge pull request #8889 from briancain/8864/master/improve-config-validate-cmd
...
Improve `vagrant validate` command
2017-08-15 14:56:15 -07:00
Brian Cain
4bd95cbfe2
( #8864 ) Improve `vagrant validate` command
...
Prior to this commit, the `vagrant validate` command would only validate
the first machine in a vagrant file. This commit improves that by
validating all known machines in the environment. If one is not found,
it will properly throw an exception instead of a stacktrace.
2017-08-15 13:53:45 -07:00
Brian Cain
c25944d7a9
Update CHANGELOG
2017-08-15 10:07:44 -07:00
Brian Cain
c0b54f74ea
Merge pull request #8875 from briancain/8716/master/dup-string-if-frozen-for-line-endings
...
Dup string if frozen for line endings
2017-08-15 10:04:34 -07:00
Brian Cain
0d8f58e5da
Merge pull request #8880 from briancain/8603/master/fix-scp-usage-in-file-prov
...
Ensure remote folder exists prior to scp in file provisioner
2017-08-15 10:04:14 -07:00
Brian Cain
2b8f7f67ea
Add unit tests for shell_expand_guest_path function
2017-08-15 09:33:29 -07:00
Brian Cain
01528689fd
( #8716 ) Dup string if frozen for line endings
...
Prior to this commit, if a user passed in a script that was frozen,
the shell provisioner would fail to modify the script to replace line
endings for windows because the string was immutable. This commit fixes
that by dup'ing the string so that it can have its line endings replaced
2017-08-15 08:38:30 -07:00
Brian Cain
61c501cc65
Ensure paths with spaces are preserved
...
Prior to this commit, if a user set the `destination` path to include a
space, the `shell_expand_guest_path` function would remove that space
and return a partial path. This commit updates that to quote the path to
be expanded to preserve the entire path.
2017-08-14 15:34:10 -07:00
Gilles Cornu
f8e9cad680
Ansible: Improve a little bit the unit tests
...
Take advantage of the RSpec 3.5 update to rewrite some examples and
finally enable the expectation about "ansible-galaxy" verbose output.
2017-08-14 19:04:44 +02:00
Brian Cain
a72b576091
Merge branch 'master' of github.com:mitchellh/vagrant
2017-08-14 09:04:55 -07:00
Brian Cain
2345637572
Update CHANGELOG
2017-08-14 08:50:47 -07:00
Justin Campbell
cc517c5d46
Update CHANGELOG.md
2017-08-14 11:50:44 -04:00
Brian Cain
335aa35ff4
Merge pull request #8871 from briancain/8719/master/add-force-flag-for-update
...
Add force flag for box upgrade command
2017-08-14 08:49:46 -07:00
Justin Campbell
715b447892
Merge pull request #8876 from mitchellh/vagrantcloud-login-description
...
command/login: Add description to created token
2017-08-14 11:49:22 -04:00
Brian Cain
eb28b33d8a
Merge pull request #8883 from pomverte/patch-1
...
typo
2017-08-14 08:47:06 -07:00
hvle
8086f4b71a
typo
2017-08-12 22:58:12 +02:00
Brian Cain
b434cfe628
Merge pull request #8882 from bhamilton/patch-1
...
Fixes typo in GH issue number.
2017-08-11 15:58:38 -07:00
Brian Cain
40eaef08b7
( #8603 ) Ensure remote folder exists prior to scp in file provisioner
...
Prior to this commit, if a file provisioner block was ran twice with a
folder on a remote host, due to how scp works, it would first copy over
that folder, and then on the second action it would copy an identical
folder nested within the first one. While this is 'intended' behavior
with scp, it is unexpected behavior for the file provisioner. This
commit updates the file provisioner to first ensure that the directory
to be copied exists on the remote host prior to copying, and then the
destination dir has been changed to the directory that the destination
will be copied to, rather than the exact directly that includes the
folder from the host to prevent the nested folder behavior.
2017-08-11 11:49:39 -07:00
Branden Hamilton
c6caec3145
Fixes typo in GH issue number.
2017-08-11 11:24:51 -04:00