forked from yugabyte/yugabyte-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·52 lines (46 loc) · 1.48 KB
/
configure
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
#!/bin/bash
# Copyright (c) YugaByte, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations
# under the License.
#
set -euo pipefail
# Among other things, /etc/os-release prints one line of this format:
#
# NAME="CentOS Linux"
#
ETC_RELEASE_FILE=/etc/os-release
if [[ -f $ETC_RELEASE_FILE ]]; then
. $ETC_RELEASE_FILE
if [[ $ID = "ubuntu" ]]; then
install_cmd=( apt-get install -y file python )
elif [[ $ID = "centos" ]]; then
install_cmd=( yum install -y file )
fi
if [[ $( id -u ) != "0" ]]; then
install_cmd=( sudo "${install_cmd[@]}" )
fi
"${install_cmd[@]}"
else
echo "We only support CentOS/Ubuntu for now. Please email us at [email protected] and tell us about
your preferred deployment platform."
exit 1
fi
SCRIPT_DIR=${BASH_SOURCE%/*}
echo $SCRIPT_DIR
POST_INSTALL_SCRIPT="$SCRIPT_DIR/post_install.sh"
if [[ ! -f $POST_INSTALL_SCRIPT ]];
then
echo "Could not find post install script: $POST_INSTALL_SCRIPT"
exit 1
fi
# Run the script
echo "Running post install script..."
"$POST_INSTALL_SCRIPT"