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

Modification to work with the latest versions of vagrant #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 Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Vagrant::Config.run do |config|
ww_config.vm.forward_port 3306, 8889
ww_config.vm.forward_port 5432, 5433
ww_config.vm.host_name = "WeBWorK"
ww_config.vm.share_folder("webwork2", "/opt/webwork/webwork2", "./webwork2", :extra => 'dmode=777,fmode=777')
ww_config.vm.share_folder("pg", "/opt/webwork/pg", "./pg", :extra => 'dmode=777,fmode=777')
ww_config.vm.share_folder("webwork2", "/opt/webwork/webwork2", "./webwork2", mount_options: ['dmode=777','fmode=777'])
ww_config.vm.share_folder("pg", "/opt/webwork/pg", "./pg", mount_options:['dmode=777','fmode=777'])
#ww_config.vm.provision :shell, :inline => "echo \"America/Denver\" | sudo tee /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata"
end
end
8 changes: 4 additions & 4 deletions vagrant/ww_install/ww_install.pl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

use strict;
use warnings;
use lib 'lib';
use lib '/vagrant/vagrant/ww_install/lib';

use Config;

Expand All @@ -63,11 +63,11 @@

use Term::UI;
use Term::ReadLine;
use Term::ReadPassword #to be found in lib/
use Term::ReadPassword; #to be found in lib/


#use Term::ReadKey;
#use Data::Dumper;
# use Term::ReadKey;
# use Data::Dumper;

###############################################################################################
# Create a new Term::Readline object for interactivity
Expand Down