forked from refinery-platform/refinery-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
57 lines (48 loc) · 2.54 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
54
55
56
57
# -*- 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|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"
config.vm.hostname = "refinery"
config.vm.network "private_network", ip: "192.168.50.50"
config.vm.provider "virtualbox" do |v|
v.memory = 1536
v.cpus = 1
end
config.ssh.forward_agent = true # to enable cloning from Github over SSH
# If you'd like to be able to copy data from an instance of Galaxy
# that's installed on the host, set $GALAXY_DATABSE_DIR environment
# variable to the absolute path of the $GALAXY_ROOT/database folder
if ENV['GALAXY_DATABASE_DIR']
# puts("INFO: Using host directory #{ENV['GALAXY_DATABASE_DIR']} to exchange data with Galaxy.")
config.vm.synced_folder ENV['GALAXY_DATABASE_DIR'], ENV['GALAXY_DATABASE_DIR']
else
# puts("WARNING: $GALAXY_DATABASE_DIR is not set: copying files from local Galaxy instance will not work.")
end
# If you'd like to be able to copy data from your host into the VM, set
# REFINERY_VM_TRANSFER_DIR on the host to a directory of your choice.
if ENV['REFINERY_VM_TRANSFER_DIR']
config.vm.synced_folder ENV['REFINERY_VM_TRANSFER_DIR'], "/vagrant/transfer"
# puts("INFO: Using host directory #{ENV['REFINERY_VM_TRANSFER_DIR']} to import datasets.")
else
# puts("WARNING: $REFINERY_VM_TRANSFER_DIR is not set: importing datasets from the command line will not work.")
end
# Install Librarian-puppet and modules before puppet provisioning (requires git and ruby-dev)
$librarian_puppet_install_script =
<<SCRIPT
export DEBIAN_FRONTEND=noninteractive && /usr/bin/apt-get -qq update && /usr/bin/apt-get -q -y install git ruby-dev
gem install librarian-puppet -v 2.2.1 && cd /vagrant/deployment && librarian-puppet install
SCRIPT
config.vm.provision :shell, :inline => $librarian_puppet_install_script
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "deployment/manifests"
puppet.manifest_file = "default.pp"
puppet.module_path = "deployment/modules" # requires modules dir to exist when this file is parsed
puppet.options = "--hiera_config /vagrant/deployment/hiera.yaml" # to avoid missing file warning
end
end