Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #87 from blinkreaction/develop
Browse files Browse the repository at this point in the history
Release v1.7.1
  • Loading branch information
lmakarov authored Aug 30, 2016
2 parents c0fed12 + d41c2b9 commit f77f136
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.7.1 (2016-08-30)

- Hotfix for Vagrant v1.8.5 regression with VirtualBox shared folders on Tiny Core


## 1.7.0 (2016-08-26)

- IMPORTANT: this release requires VirtualBox v5.1.x and Vagrant v1.8.5+
Expand All @@ -9,6 +14,7 @@
- docker-compose 1.8.0
- winpty 0.4.0 (Windows only)


## 1.6.2 (2016-06-27)

- Hotfix: Fixed broken winpty dependency since 1.6.0 on Windows
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0
1.7.1
12 changes: 6 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -242,14 +242,14 @@ Vagrant.configure("2") do |config|
end
end

# Fix default vagrant share.
# TODO: test and remove once Vagrant v1.8.6 is out.
config.vm.synced_folder ".", "/vagrant", owner: 1000, group: 50

# Make host home directory available to containers in /.home
# TODO: test and remove hardcoded owner and group below once Vagrant v1.8.6 is out.
if File.directory?(File.expand_path("~"))
config.vm.synced_folder "~", "/.home"
end

# Make host SSH keys available to containers in /.ssh (legacy, TO BE REMOVED soon)
if File.directory?(File.expand_path("~/.ssh"))
config.vm.synced_folder "~/.ssh", "/.ssh"
config.vm.synced_folder "~", "/.home", owner: 1000, group: 50
end

######################################################################
Expand Down

0 comments on commit f77f136

Please sign in to comment.