forked from fossology/fossology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
executable file
·99 lines (73 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Copyright Siemens AG, 2014
# SPDX-License-Identifier: GPL-2.0 LGPL-2.1
$add_proxy_settings = <<PROXYSCRIPT
# get gateway of running VM and set proxy info within global profile
echo 'export host_ip="`netstat -rn | grep "^0.0.0.0 " | cut -d " " -f10`"' > /etc/profile.d/proxy.sh
echo 'export ftp_proxy="http://$host_ip:3128"' >> /etc/profile.d/proxy.sh
echo 'export http_proxy="http://$host_ip:3128"' >> /etc/profile.d/proxy.sh
echo 'export https_proxy="https://$host_ip:3128"' >> /etc/profile.d/proxy.sh
# load the proxy within current shell
. /etc/profile.d/proxy.sh
if ! sudo grep -q http_proxy /etc/sudoers; then
sudo su -c 'sed -i "s/env_reset/env_reset\\nDefaults\\tenv_keep = \\"http_proxy https_proxy ftp_proxy\\"/" /etc/sudoers'
fi
PROXYSCRIPT
$build_and_test = <<SCRIPT
export DEBIAN_FRONTEND=noninteractive
echo "Provisioning system to compile, test and develop."
# fix "dpkg-reconfigure: unable to re-open stdin: No file or directory" issue
sudo dpkg-reconfigure locales
sudo apt-get update -qq -y
sudo apt-get install -qq curl php5 git libspreadsheet-writeexcel-perl libdbd-sqlite3-perl
# sudo /vagrant/install/install_composer.sh
# install spdx-tools
/vagrant/install/scripts/install-spdx-tools.sh
# install ninka
/vagrant/install/scripts/install-ninka.sh
date > /etc/vagrant.provisioned
echo "lets go!"
cd /vagrant
./utils/fo-installdeps -e -y
make CFLAGS=-I/usr/include/glib-2.0
sudo make install
sudo /usr/local/lib/fossology/fo-postinstall
sudo /etc/init.d/fossology start
sudo cp /vagrant/install/src-install-apache-example.conf /etc/apache2/conf-enabled/fossology.conf
# increase upload size
sudo /vagrant/install/scripts/php-conf-fix.sh --overwrite
sudo /etc/init.d/apache2 restart
echo "use your FOSSology at http://localhost:8081/repo/"
echo " user: fossy , password: fossy"
echo "or do a vagrant ssh and look at /vagrant for your source tree"
SCRIPT
Vagrant.configure("2") do |config|
# Hmm... no Debian image available yet, let's use a derivate
# Ubuntu Server 14.04 LTS (Trusty Tahr)
config.vm.box = "trusty64"
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provider "virtualbox" do |vbox|
vbox.customize ["modifyvm", :id, "--memory", "4096"]
vbox.customize ["modifyvm", :id, "--cpus", "2"]
end
config.vm.network "forwarded_port", guest: 80, host: 8081
config.vm.network "forwarded_port", guest: 5432, host: 5432
# use proxy from host if environment variable PROXY=true
if ENV['PROXY']
if ENV['PROXY'] == 'true'
config.vm.provision "shell" do |s|
s.inline = $add_proxy_settings
end
end
end
# call the script
config.vm.provision "shell" do |s|
s.inline = $build_and_test
end
config.vm.provision "shell", run: "always" do |s|
s.inline = "service fossology start"
end
# fix "stdin: is not a tty" issue
# config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
end