11 lines
149 B
Bash
11 lines
149 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
hostType=centos8
|
||
|
|
||
|
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
||
|
. $SCRIPT_PATH/functions
|
||
|
cd $SCRIPT_PATH/..
|
||
|
|
||
|
performInstallLocal "$#"
|