Skip to content

Commit 32e82df

Browse files
committed
Add Vagrantfiles to include.
1 parent 10b1030 commit 32e82df

File tree

3 files changed

+75
-0
lines changed

3 files changed

+75
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# This vagrantfile is not to be used to create a virtual machine using this
5+
# repository. Instead, it is a vagrantfile that is to be embedded (built in) to
6+
# the box file created by 'make full'. For more information about built-in
7+
# vagrantfiles, see:
8+
#
9+
# https://docs.vagrantup.com/v2/vagrantfile/index.html#load-order
10+
#
11+
# This particular vagrant file changes the user credentials that connects to
12+
# the Virtual Micromagnetics environment with, and enables a GUI by default.
13+
14+
VAGRANTFILE_API_VERSION = "2"
15+
16+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
17+
18+
config.vm.provider :virtualbox do |vb|
19+
vb.gui = true
20+
end
21+
22+
config.ssh.username = "virtualmicromagnetics"
23+
config.ssh.password = "virtualmicromagnetics"
24+
25+
end
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# This vagrantfile is not to be used to create a virtual machine using this
5+
# repository. Instead, it is a vagrantfile that is to be embedded (built in) to
6+
# the box file created by 'make full'. For more information about built-in
7+
# vagrantfiles, see:
8+
#
9+
# https://docs.vagrantup.com/v2/vagrantfile/index.html#load-order
10+
#
11+
# This particular vagrant file changes the user credentials that connects to
12+
# the Virtual Micromagnetics environment with, and enables a GUI by default.
13+
14+
VAGRANTFILE_API_VERSION = "2"
15+
16+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
17+
18+
config.vm.provider :virtualbox do |vb|
19+
vb.gui = true
20+
end
21+
22+
config.ssh.username = "virtualmicromagnetics"
23+
config.ssh.password = "virtualmicromagnetics"
24+
25+
end
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# This vagrantfile is not to be used to create a virtual machine using this
5+
# repository. Instead, it is a vagrantfile that is to be embedded (built in) to
6+
# the box file created by 'make full'. For more information about built-in
7+
# vagrantfiles, see:
8+
#
9+
# https://docs.vagrantup.com/v2/vagrantfile/index.html#load-order
10+
#
11+
# This particular vagrant file changes the user credentials that connects to
12+
# the Virtual Micromagnetics environment with, and enables a GUI by default.
13+
14+
VAGRANTFILE_API_VERSION = "2"
15+
16+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
17+
18+
config.vm.provider :virtualbox do |vb|
19+
vb.gui = true
20+
end
21+
22+
config.ssh.username = "virtualmicromagnetics"
23+
config.ssh.password = "virtualmicromagnetics"
24+
25+
end

0 commit comments

Comments
 (0)