install.sh: add dependency check and postinst script for manual install

To install scylla-jmx using install.sh easily, we need:
 - run dependency check before install
 - run postinst script after install

But we don't want to run them when we build .rpm/.deb package,
we also need to add --packaging option to skip them.

See scylladb/scylla#5830
This commit is contained in:
Takuya ASADA 2020-02-27 09:16:09 +09:00 committed by Avi Kivity
parent 3fb777a8f0
commit 354df10ea9
1 changed files with 22 additions and 0 deletions

View File

@ -31,6 +31,7 @@ Options:
--prefix /prefix directory prefix (default /usr)
--nonroot shortcut of '--disttype nonroot'
--sysconfdir /etc/sysconfig specify sysconfig directory name
--packaging use install.sh for packaging
--help this helpful message
EOF
exit 1
@ -39,6 +40,7 @@ EOF
root=/
sysconfdir=/etc/sysconfig
nonroot=false
packaging=false
while [ $# -gt 0 ]; do
case "$1" in
@ -58,6 +60,10 @@ while [ $# -gt 0 ]; do
sysconfdir="$2"
shift 2
;;
"--packaging")
packaging=true
shift 1
;;
"--help")
shift 1
print_usage
@ -68,6 +74,20 @@ while [ $# -gt 0 ]; do
esac
done
if ! $packaging; then
has_java=false
if [ -x /usr/bin/java ]; then
javaver=$(/usr/bin/java -version 2>&1|head -n1|cut -f 3 -d " ")
if [[ "$javaver" =~ ^\"1.8.0 ]]; then
has_java=true
fi
fi
if ! $has_java; then
echo "Please install openjdk-8 before running install.sh."
exit 1
fi
fi
if [ -z "$prefix" ]; then
if $nonroot; then
prefix=~/scylladb
@ -137,4 +157,6 @@ if $nonroot; then
sed -i -e "s#/opt/scylladb/jmx#$rprefix/jmx#g" "$rsysconfdir"/scylla-jmx
systemctl --user daemon-reload
echo "Scylla-JMX non-root install completed."
elif ! $packaging; then
systemctl --system daemon-reload
fi