-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_install.sh
115 lines (97 loc) · 3.77 KB
/
build_install.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
109
110
111
112
113
114
115
#!/bin/bash
# Copyright 2012 - 2013 Zarafa B.V.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3,
# as published by the Free Software Foundation with the following additional
# term according to sec. 7:
#
# According to sec. 7 of the GNU Affero General Public License, version
# 3, the terms of the AGPL are supplemented with the following terms:
#
# "Zarafa" is a registered trademark of Zarafa B.V. The licensing of
# the Program under the AGPL does not imply a trademark license.
# Therefore any rights, title and interest in our trademarks remain
# entirely with us.
#
# However, if you propagate an unmodified version of the Program you are
# allowed to use the term "Zarafa" to indicate that you distribute the
# Program. Furthermore you may use our trademarks where it is necessary
# to indicate the intended purpose of a product or service provided you
# use it in accordance with honest practices in industrial or commercial
# matters. If you want to propagate modified versions of the Program
# under the name "Zarafa" or "Zarafa Server", you may only do so if you
# have a written permission by Zarafa B.V. (to acquire a permission
# please contact Zarafa at [email protected]).
#
# The interactive user interface of the software displays an attribution
# notice containing the term "Zarafa" and/or the logo of Zarafa.
# Interactive user interfaces of unmodified and modified versions must
# display Appropriate Legal Notices according to sec. 5 of the GNU
# Affero General Public License, version 3, when you propagate
# unmodified or modified versions of the Program. In accordance with
# sec. 7 b) of the GNU Affero General Public License, version 3, these
# Appropriate Legal Notices must retain the logo of Zarafa or display
# the words "Initial Development by Zarafa" if the display of the logo
# is not reasonably feasible for technical reasons. The use of the logo
# of Zarafa in Legal Notices is allowed for unmodified and modified
# versions of the software.
#
# 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/>.
env | sort
cwd="$(cd $(dirname "$0"); pwd)"
PKGS="zarafa-zsm-server zarafa-zsm-remotesync zarafa-zsm-ldapconf"
. ${cwd}/shelltools/osdetect.sh
OS=$(detect_os)
PKGINS=$(detect_pkgins)
PKGMAN=$(detect_pkgman)
pkgs_are_installed() {
if [[ "${PKGMAN}" == "dpkg" ]]; then
if dpkg -s $PKGS &>/dev/null; then
return 0
fi
elif [[ "${PKGMAN}" == "rpm" ]]; then
if rpm -q $PKGS &>/dev/null; then
return 0
fi
fi
return 1
}
pkg_install() {
if [[ "${PKGINS}" == "deb" ]]; then
apt-get install -y $PKGS
elif [[ "${PKGINS}" == "yum" ]]; then
yum install -y $PKGS
fi
}
build_install() {
./bootstrap.sh fabric
fab deps.pkg
rm -rf dist/*
if [[ "${PKGINS}" == "apt" ]] && [[ "${PKGMAN}" == "dpkg" ]]; then
fab pkg.deb
dpkg -i dist/*.deb
apt-get install -y -f
elif [[ "${PKGINS}" == "yum" ]]; then
fab pkg.rpm
yum install -y dist/*.rpm
fi
}
cd ${cwd}
if pkgs_are_installed; then
echo "Packages detected as installed: $PKGS"
else
echo "(Some) packages not detected as installed: $PKGS"
echo "Trying to install packages from repo: $PKGS"
pkg_install
if ! pkgs_are_installed; then
echo "Could not install packages from repo, will build & install on-the-fly: $PKGS"
build_install
fi
fi