Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ Vagrant.configure("2") do |config|
# optimize base box
config.vm.provision "shell", path: "#{github_url}/scripts/base_box_optimizations.sh", privileged: true

# Provision Java Runtime Environment
# config.vm.provision "shell", path: "#{github_url}/scripts/jre.sh"

# Provision PHP
#config.vm.provision "shell", path: "#{github_url}/scripts/php.sh", args: [php_timezone, hhvm, php_version]

Expand Down
7 changes: 7 additions & 0 deletions scripts/jre.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

echo ">>> Installing Java Runtime - Default JRE"

# Java
# -qq implies -y --force-yes
sudo apt-get install -qq default-jre