This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 183
/
Vagrantfile
53 lines (46 loc) · 1.7 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Vagrant.require_version ">= 2.0.0"
Vagrant.configure("2") do | config |
# Base Box #
config.vm.box = "eval-win2008r2-standard-ssh"
# Configure Box #
config.vm.provider "virtualbox" do |v|
# override paravirtual provider to be hyperv
v.customize ["startvm", :id, "--type", "separate"]
v.customize ["modifyvm", :id, "--paravirtprovider", "hyperv"]
v.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
v.customize ["modifyvm", :id, "--accelerate3d", "on"]
v.customize ["modifyvm", :id, "--accelerate2dvideo", "on"]
v.customize ["modifyvm", :id, "--graphicscontroller", "vboxsvga"]
v.cpus = 4
v.name = "Windows_Server_2008_SignalFx_Agent"
v.memory = "6144"
end
# Mount Directories #
# Agent Source Directory
config.vm.synced_folder "../../../../.", "C:\\Users\\vagrant\\signalfx-agent"
# Copy Files #
# SSH Keys (disabled for now)#
# config.vm.provision "file", source: "~/.ssh", destination: "C:\\Users\\vagrant\\.ssh"
# Provision Box #
config.vm.provision "shell" do |s|
s.path = "../common/activate_windows.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/1_chocolatey.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/2_useful_stuff.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/3_golang.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/4_jetbrains.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/5_visual_studio_code.ps1"
end
config.vm.provision "shell" do |s|
s.path = "../common/6_windows_sdk_7.ps1"
end
end