-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbootstrap.sh
83 lines (63 loc) · 2.39 KB
/
bootstrap.sh
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
#!/bin/bash
# Contributors:
# Christopher P. Barnes <[email protected]>
# Andrei Sura: github.com/indera
# Mohan Das Katragadda <[email protected]>
# Philip Chase <[email protected]>
# Ruchi Vivek Desai <[email protected]>
# Taeber Rapczak <[email protected]>
# Josh Hanna <[email protected]>
# Copyright (c) 2015, University of Florida
# All rights reserved.
#
# Distributed under the BSD 3-Clause License
# For full text of the BSD 3-Clause License see http://opensource.org/licenses/BSD-3-Clause
export DEBIAN_FRONTEND=noninteractive
# Exit on first error
set -e
echo "Import environment variables from /vagrant/.env"
. /vagrant/.env
# Indicate where the vagrant folder is mounted in the guest file system
SHARED_FOLDER=/vagrant
# import helper functions
. $SHARED_FOLDER/bootstrap_functions.sh
# Pick a fast mirror...or at least one that works
log "Picking a fast mirror in the US..."
apt-get install -y netselect-apt
# patch netselect-apt to avoid redirect failures
sed -e 's#url="http://www.debian.org/mirror/mirrors_full"#url="https://www.debian.org/mirror/mirrors_full"#;' -i /usr/bin/netselect-apt
cd /etc/apt/
netselect-apt -c US > ~/netselect-apt.log 2>&1
# Setting oldstable debian repository
echo "deb http://deb.debian.org/debian stretch main contrib" > /etc/apt/sources.list
echo "deb-src http://deb.debian.org/debian stretch main contrib" >> /etc/apt/sources.list
echo "deb http://deb.debian.org/debian stretch-updates main contrib" >> /etc/apt/sources.list
echo "deb-src http://deb.debian.org/debian stretch-updates main contrib" >> /etc/apt/sources.list
# Update our repos
log "Updating apt package indicies..."
apt-get update
# Install developer tools
log "Execute: install_utils..."
install_utils
log "Execute: install_prereqs..."
install_prereqs $MYSQL_REPO $DB_ROOT_PASS
# prep the /var/www directory
log "Prep the /var/www file system"
if [ -d /var/www/redcap ]; then
rm -rf /var/www/redcap
fi
if [ -L /var/www/redcap ]; then
rm /var/www/redcap
fi
mkdir /var/www/redcap
cp /vagrant/files/prompt_to_install.html /var/www/redcap/index.html
# create the empty databases
create_database $DB $DB_APP_USER $DB_APP_PASSWORD $DB_HOST $DB_ROOT_PASS
# make a config file for the mysql clients
write_dot_mysql_dot_cnf $DB $DB_APP_USER $DB_APP_PASSWORD $DB_ROOT_PASS
# configure the mail server
configure_exim4
# install pdf toolkit
install_pdftk
# install composer
install_composer