forked from nasa/nos3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nasa#76 - Removed deployment and added Vagrantfile pulling specific n…
…os3 base box;
- Loading branch information
Showing
3 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Vagrant.configure("2") do |config| | ||
# Uncomment one of the following to select configuration | ||
config.vm.box = "nos3/ubuntu" | ||
|
||
# Specify version | ||
config.vm.box_version = "0.0.0" | ||
|
||
# Share host NOS3 repository into VM | ||
config.vm.synced_folder ".", "/home/nos3/Desktop/github-nos3" | ||
|
||
# General configuration | ||
config.ssh.password = "vagrant" | ||
config.vm.provider "virtualbox" do |vbox| | ||
vbox.name = "nos3_0.0.0" | ||
vbox.gui = true | ||
vbox.cpus = 2 | ||
vbox.memory = "8192" | ||
end | ||
end |
Submodule deployment
deleted from
04a32b