-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-in-one.sh
37 lines (32 loc) · 1.16 KB
/
all-in-one.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
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2019
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o nounset
set -o pipefail
# shellcheck disable=SC1091
source /etc/os-release || source /usr/lib/os-release
case ${ID,,} in
*suse)
INSTALLER_CMD="sudo -H -E zypper -q install -y --no-recommends"
sudo zypper -n ref
;;
ubuntu|debian)
INSTALLER_CMD="sudo -H -E apt-get -y -q=3 install"
sudo apt-get update
;;
rhel|centos|fedora)
PKG_MANAGER=$(command -v dnf || command -v yum)
INSTALLER_CMD="sudo -H -E ${PKG_MANAGER} -q -y install"
sudo "$PKG_MANAGER" updateinfo
;;
esac
${INSTALLER_CMD} git
git clone --recurse-submodules --depth 1 http://github.com/electrocucaracha/grimoirelab /tmp/grimoirelab
cd /tmp/grimoirelab || exit
./docker-compose_deploy.sh