Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #3: fix for vagrant 1.3.x #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Software to download:
------------------------------------------------------------------
**Windows:**
* VirtualBox - https://www.virtualbox.org/wiki/Downloads
* Vagrant - http://downloads.vagrantup.com/
* Vagrant - http://downloads.vagrantup.com/ (Vagrantfile is modified for 1.3.x)
* Putty - http://www.putty.org

**Linux:**<br>
Expand Down Expand Up @@ -49,7 +49,7 @@ Configure a SSH connection in Putty:
After the connect is established you need to enter user name and password:
* user: vagrant
* pass: vagrant
***

**Linux:**<br/>
Open a console and execute
```
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Vagrant::Config.run do |config|
config.vm.share_folder("aptarchives","/var/cache/apt/archives/","aptcache")

# mount repository "phpughh.github.com"
config.vm.share_folder("phpughh.github.com","/var/www/phpughh.github.com","../phpughh.github.com", :extra => "uid=33")
config.vm.share_folder("phpughh.github.com","/var/www/phpughh.github.com","../phpughh.github.com", :mount_options => ["uid=33"])

# Forward a port from the guest to the host, which allows for outside
# computers to access the VM, whereas host only networking does not.
Expand Down