-
Notifications
You must be signed in to change notification settings - Fork 3
/
Vagrantfile
50 lines (45 loc) · 1.62 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# centos 6.5
config.vm.box = "elmsln/centos-6.7"
# ip address
config.vm.network "private_network", ip: "192.168.18.55"
# host name
config.vm.hostname = "nittany.psudug.dev"
# run script as root
config.vm.provision "shell",
path: "scripts/installer/root.sh"
# run script as vagrant user
config.vm.provision "shell",
path: "scripts/installer/vagrant.sh",
privileged: FALSE
# automatically carve out 1/4 of the box resources for this VM
config.vm.provider "virtualbox" do |v|
host = RbConfig::CONFIG['host_os']
# Give VM 1/4 system memory & access to all cpu cores on the host
if host =~ /darwin/
cpus = `sysctl -n hw.ncpu`.to_i
# sysctl returns Bytes and we need to convert to MB
mem = `sysctl -n hw.memsize`.to_i / 1024 / 1024 / 4
elsif host =~ /linux/
cpus = `nproc`.to_i
# meminfo shows KB and we need to convert to MB
mem = `grep 'MemTotal' /proc/meminfo | sed -e 's/MemTotal://' -e 's/ kB//'`.to_i / 1024 / 4
elsif host =~ /mingw32/
mem = `wmic os get TotalVisibleMemorySize | grep '^[0-9]'`.to_i / 1024 / 4
if mem < 1024
mem = 1024
end
cpus = 2
else # sorry weird Windows folks, I can't help you
cpus = 2
mem = 1024
end
# you can modify these manually if you want specific specs
v.customize ["modifyvm", :id, "--memory", mem]
v.customize ["modifyvm", :id, "--cpus", cpus]
end
end