-
Notifications
You must be signed in to change notification settings - Fork 59
/
deploy-dev.sh
executable file
·108 lines (97 loc) · 3.07 KB
/
deploy-dev.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/sh
# HyperVM, Server Virtualization GUI for OpenVZ and Xen
#
# Copyright (C) 2000-2009 LxLabs
# Copyright (C) 2009-2011 LxCenter
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# author: Ángel Guzmán Maeso <[email protected]>
#
# Install and deploy a develoment version on a local enviroment
#
HYPERVM_PATH='/usr/local/lxlabs'
usage(){
echo "Usage: $0 [BRANCH] [-h]"
echo 'BRANCH: master or dev'
echo 'h: shows this help.'
exit 1
}
install_GIT()
{
# Redhat based
if [ -f /etc/redhat-release ] ; then
# Install git with curl and expat support to enable support on github cloning
yum install -y gcc gettext-devel expat-devel curl-devel zlib-devel openssl-devel
# Debian based
elif [ -f /etc/debian_version ] ; then
# No tested
apt-get install gcc
fi
# @todo Try to get the lastest version from some site. LASTEST file?
GIT_VERSION='1.7.9.1'
echo "Downloading and compiling GIT ${GIT_VERSION}"
wget http://git-core.googlecode.com/files/git-${GIT_VERSION}.tar.gz
tar xvfz git-*.tar.gz; cd git-*;
./configure --prefix=/usr --with-curl --with-expat
make all
make install
echo 'Cleaning GIT files.'
cd ..; rm -rf git-*
}
require_root()
{
if [ `/usr/bin/id -u` -ne 0 ]; then
echo 'Please, run this script as root.'
usage
fi
}
require_root
echo 'Installing HyperVM development version.'
if which git >/dev/null; then
echo 'GIT support detected.'
else
echo 'No GIT support detected. Installing GIT.'
install_GIT
fi
case $1 in
master )
# Clone from GitHub the last version using git transport (no http or https)
echo "Installing branch hypervm/master"
mkdir -p ${HYPERVM_PATH}
git clone git://github.com/lxcenter/hypervm.git ${HYPERVM_PATH}
cd ${HYPERVM_PATH}
git checkout master
cd hypervm-install
sh ./make-distribution.sh
cd ../hypervm
sh ./make-development.sh
echo "Done. For install run:\ncd ${HYPERVM_PATH}/hypervm-install/hypervm-linux/; sh hypervm-install-[master|slave].sh with args"
;;
dev )
# Clone from GitHub the last version using git transport (no http or https)
echo "Installing branch hypervm/dev"
git clone git://github.com/lxcenter/hypervm.git ${HYPERVM_PATH}
cd ${HYPERVM_PATH}
git checkout dev
cd hypervm-install
sh ./make-distribution.sh
cd ../hypervm
sh ./make-development.sh
echo "Done. For install run:\ncd ${HYPERVM_PATH}/hypervm-install/hypervm-linux/; sh hypervm-install-[master|slave].sh with args"
;;
* )
usage
return 1 ;;
esac