12 lines
171 B
Bash
12 lines
171 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
hostType=debian10
|
||
|
|
||
|
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
||
|
. $SCRIPT_PATH/functions
|
||
|
cd $SCRIPT_PATH/..
|
||
|
|
||
|
performInstallHttps "$#" "$1" "$2" "$3" "$4"
|