File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,8 @@ Vagrant.configure("2") do |config|
148
148
# Display the VirtualBox GUI when booting the machine
149
149
vb . gui = false
150
150
vb . customize [ "modifyvm" , :id , "--vram" , "128" ]
151
- # Customize the amount of memory on the VM:
152
- vb . memory = "4096"
151
+ vb . memory = 6144
152
+ vb . cpus = 6
153
153
end
154
154
155
155
nodeconfig . vm . provision "shell" , inline : <<-SHELL
@@ -164,7 +164,7 @@ Vagrant.configure("2") do |config|
164
164
wget
165
165
curl -sL -o /tmp/go#{ GO_VERSION } .linux-amd64.tar.gz https://go.dev/dl/go#{ GO_VERSION } .linux-amd64.tar.gz
166
166
tar -C /usr/local -xzf /tmp/go#{ GO_VERSION } .linux-amd64.tar.gz
167
- echo "alias ll='ls -la '" > /etc/profile.d/ll.sh
167
+ echo "alias ll='ls -lah '" > /etc/profile.d/ll.sh
168
168
echo 'export PATH=$PATH:/usr/local/go/bin' > /etc/profile.d/go.sh
169
169
echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> /etc/profile.d/go.sh
170
170
SHELL
You can’t perform that action at this time.
0 commit comments