diff options
Diffstat (limited to 'installer/vagrant/Vagrantfile-ogagent-vbox')
-rw-r--r-- | installer/vagrant/Vagrantfile-ogagent-vbox | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/vagrant/Vagrantfile-ogagent-vbox b/installer/vagrant/Vagrantfile-ogagent-vbox index 65a59a7b..f5cd690e 100644 --- a/installer/vagrant/Vagrantfile-ogagent-vbox +++ b/installer/vagrant/Vagrantfile-ogagent-vbox @@ -6,7 +6,7 @@ ENV['VAGRANT_DEFAULT_PROVIDER'] = "virtualbox" # Language. LANGUAGE = "es_ES" ENV['LC_ALL'] = LANGUAGE + ".UTF-8" -# Amount of memory VM. +# Amount of virtual memory and virtual CPUs. VMMEM = 4096 VMCPUS = 4 # OpenGnsys boot-tools environment provisioning script. @@ -29,7 +29,7 @@ sed -i '$d' /usr/lib/udev/rules.d/60-vboxguest.rules akmods && systemctl restart systemd-modules-load.service # Install ATOM editor by default (less disk space). wget -q https://atom.io/download/rpm -O /tmp/atom.rpm && dnf install -y /tmp/atom.rpm && rm -f /tmp/atom.rpm -# Comment out next line if you prefer to install Eclipse IDE for Python (it needs some disk space). +# Comment out next line if you prefer to install Eclipse IDE for Python (it needs more disk space). #dnf install -y eclipse-pydev eclipse-nls-${LANG%_*} # Download OGAgent environment installer. svn export http://opengnsys.es/svn/branches/version1.1/installer/ogagent-devel-installer.sh /home/vagrant @@ -61,7 +61,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # VM base and host name. ag.vm.box = "fedora/24-cloud-base" ag.vm.hostname = "ogAgent" - # Comment out if you want to disable synced folder. + # Comment out to disable synced folder. #ag.vm.synced_folder ".", "/vagrant", disabled: true # Launch provisioning script. ag.vm.provision "shell", inline: SCRIPT |