Commit Graph

5540 Commits

Author SHA1 Message Date
Mitchell Hashimoto d01b9ef1df Merge pull request #3210 from jyggen/patch-1
core: Fixed broken PowerShell execution
2014-03-14 08:34:34 -07:00
Mitchell Hashimoto 0c805de007 Merge pull request #3215 from fgrehm/transpec-unit
Transpec unit
2014-03-14 08:31:26 -07:00
Fabio Rehm 99547eef8f For some weird reason the changes introduced by transpec made this spec fail, this should fix it 2014-03-14 12:09:07 -03:00
Fabio Rehm 54656151cf Convert specs to RSpec 2.14.8 syntax with Transpec
This conversion is done by Transpec 1.10.2 with the following command:
    transpec test/unit/

* 507 conversions
    from: obj.should
      to: expect(obj).to

* 394 conversions
    from: == expected
      to: eq(expected)

* 260 conversions
    from: obj.should_receive(:message)
      to: expect(obj).to receive(:message)

* 85 conversions
    from: obj.stub(:message)
      to: allow(obj).to receive(:message)

* 25 conversions
    from: its(:attr) { }
      to: describe '#attr' do subject { super().attr }; it { } end

* 19 conversions
    from: obj.should_not
      to: expect(obj).not_to

* 7 conversions
    from: obj.should_not_receive(:message)
      to: expect(obj).not_to receive(:message)

* 3 conversions
    from: Klass.any_instance.should_receive(:message)
      to: expect_any_instance_of(Klass).to receive(:message)
2014-03-14 12:02:07 -03:00
Jonas Stendahl d7320399e2 Fixed broken PowerShell scripts execution [GH-3192] 2014-03-14 12:42:28 +01:00
khiro 9edb299c0d Fix a network configuration issue of Fedora [GH-1997]
Support Predictable Network Interface Names.
2014-03-14 15:12:51 +09:00
Mitchell Hashimoto f0ee138e87 Update CHANGELOG 2014-03-13 14:19:02 -07:00
Mitchell Hashimoto 024056fc66 Set the Bundler UI only if we enable it [GH-3193] 2014-03-13 14:18:33 -07:00
Mitchell Hashimoto b3ad79e5d2 Up version for dev 2014-03-13 11:34:27 -07:00
Jack Pearkes 038e3b8258 website/www: update for deploy 2014-03-13 14:29:48 -04:00
Mitchell Hashimoto 6977e93ba9 v1.5.1 2014-03-13 09:49:39 -07:00
Mitchell Hashimoto ca00ad8257 guests/linux: one more time 2014-03-13 09:48:53 -07:00
Mitchell Hashimoto 3c02caf811 guests/linux: check for proper owner [GH-3186] 2014-03-13 09:48:22 -07:00
Mitchell Hashimoto 00d73eabda guests/linux: rsync only chown if invalid user/group [GH-3186] 2014-03-13 09:47:34 -07:00
Mitchell Hashimoto 1213b87679 core: vagrant help no longer loads Vagrantfile 2014-03-13 08:54:30 -07:00
Mitchell Hashimoto 513efa6739 core: Downloads with user/pass use curl -u flag [GH-3183] 2014-03-13 08:53:18 -07:00
Mitchell Hashimoto 012c28606f kernel/v2: validate forwarded ports [GH-3187] 2014-03-13 08:32:05 -07:00
Mitchell Hashimoto 03c15343e4 Merge pull request #3189 from mitchellh/docs-www-vagrant-cloud
website/docs: link to real vagrant cloud url
2014-03-13 08:25:21 -07:00
Jack Pearkes aacdd5b837 website/docs: link to real vagrant cloud url
This is mostly for cookies and google. If you're logged in to
www, you won't be logged in to apex, and visa versa. Also a Vagrant
Cloud bug but wanted to make it consistent on this end.
2014-03-13 09:59:39 -04:00
Eric Saxby f36d372b32 Resolve confusion around SmartOS rsync_pre
rsync should *always* be pre-installed in SmartOS (global and local zones), as
it's part of the kernel. Previous commits incorrectly attributed #rsync_install
to running rsync, rather than to installing the rsync command.
2014-03-12 22:35:32 -07:00
Mitchell Hashimoto 998b30985f Error message if tampering with plugins.json 2014-03-12 20:42:05 -07:00
Mitchell Hashimoto 8634cc309b core: error earlier if adding a path that doesn't exist 2014-03-12 20:33:12 -07:00
Mitchell Hashimoto b0f8d050f0 provisioners/salt: style nitpicks 2014-03-12 20:04:57 -07:00
Mitchell Hashimoto a8fa2d5ffe providers/virtualbox: import progress works on Windows 2014-03-12 20:02:05 -07:00
Mitchell Hashimoto 621369ebba core: Execute PowerShell scripts even with spaces in dir [GH-3100] 2014-03-12 19:49:45 -07:00
Mitchell Hashimoto 56dd0e8531 synced_folders/rsync: don't watch excluded paths [GH-3159] 2014-03-12 19:40:18 -07:00
Mitchell Hashimoto a6eafd6a12 synced_folders/rsync: execute rsync_post cap if it exists [GH-3163] 2014-03-12 18:43:59 -07:00
Mitchell Hashimoto 67e9257332 Update CHANGELOG 2014-03-12 18:37:28 -07:00
Mitchell Hashimoto ec0234349a Merge pull request #3167 from xraj/bugfix/linux-nfs-exports-regex
hosts/linux: Fix Linux NFS exports pruning due to bad `sed` expression
2014-03-12 18:36:58 -07:00
Mitchell Hashimoto 8aca71c750 website/docs: note that rsync__args needs to be array [GH-3168] 2014-03-12 18:35:57 -07:00
Mitchell Hashimoto 9b5d262e29 website/docs: doc windows gotcha [GH-3170] 2014-03-12 18:33:36 -07:00
Mitchell Hashimoto dac6ae9310 website/docs: clean up example 2014-03-12 18:29:32 -07:00
Mitchell Hashimoto 2e37e8e1e4 Merge pull request #3174 from freshteapot/3173
website/docs: config.vm.box_url can use local files
2014-03-12 18:28:42 -07:00
Mitchell Hashimoto 6c8f251580 Update CHANGELOG 2014-03-12 18:28:03 -07:00
Mitchell Hashimoto 3053d71116 Merge pull request #3178 from cuberri/fix/master/tinycore-rsync_install
guests/tinycore: add rsync_install capability to tinycore guest
2014-03-12 18:26:08 -07:00
cuberri 5ef0d881d0 add rsync_install capability to tinycore guest 2014-03-13 01:41:52 +01:00
Chris 2479c63805 config.vm.box_url can use local files
Updated the documentation to show that box_url can use "file://". This ability was added via in issue #1087 that was added 2 years ago.

https://github.com/mitchellh/vagrant/pull/1087
2014-03-12 23:25:31 +01:00
Russell Jackson a3c94ab910 Fix Linux NFS exports pruning due to bad `sed` expression
The mount id is a file path which will contain forward slashes. A
previous attempt (although notably missing in the Linux host plugin) at
fixing this used `String.gsub` to escape the forward slashes; however,
the solution that eventually made its way into the 1.5 release uses
`Regexp.escape` which doesn't escape forward slashes.

The Ruby `Regexp.escape` method does not escape forward slashes because
they are not RE meta-characters; their special meaning is specific to
sed expressions as delimiters. To avoid the issue entirely, we can use
an alternative delimiter by prefixing the address expression with a
backslash with the desired delimiter character following.

Use control character (ASCII code point `0x01`) as expression delimiter
so it is very unlikely an identifier will have a conflicting character
within it.
2014-03-12 12:25:53 -07:00
Mitchell Hashimoto 7d32aed01f Clarify error message on missing b ox 2014-03-12 09:38:52 -07:00
Mitchell Hashimoto da7b2c50b0 website/docs: document provider share impl [GH-3144] 2014-03-12 09:09:23 -07:00
Mitchell Hashimoto 229d06f122 Merge pull request #3145 from Fuhrmann/master
website/docs: Fix typo in rsync-auto docs
2014-03-12 08:59:33 -07:00
Mitchell Hashimoto 8172fbbd6d Merge branch 'patch-1' of https://github.com/schlamar/vagrant into schlamar-patch-1
Conflicts:
	CHANGELOG.md
2014-03-12 08:45:35 -07:00
Mitchell Hashimoto 0066888a87 Update CHANGELOG 2014-03-12 08:41:40 -07:00
Mitchell Hashimoto e4e845232c Merge pull request #3154 from mway/fix-osx-guest-namespace
guests/darwin: global namespace for class IO naming conflict
2014-03-12 08:39:21 -07:00
Marc Schlaich 5694c7dc2f providers/virtualbox: retry list vms [GH-2831] 2014-03-12 16:23:32 +01:00
Matt Way 16d093dc8a use global namespace for class IO naming conflict 2014-03-12 07:52:11 -04:00
Fuhrmann c97817fc96 Fix typo in rsync-auto docs 2014-03-11 23:56:48 -04:00
Mitchell Hashimoto 240523b1aa Update CHANGELOG 2014-03-11 11:29:03 -07:00
Mitchell Hashimoto 5863ffdf7b core: Windows paths work for box add [GH-3132] 2014-03-11 11:27:35 -07:00
Mitchell Hashimoto 8624e2cbf2 Fix failing tests on Windows 2014-03-11 11:09:37 -07:00