mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-19 21:55:00 +01:00
13 lines
321 B
Bash
13 lines
321 B
Bash
. ./install_docker.sh
|
|
. ./install_lunanode.sh
|
|
|
|
install() {
|
|
. ../data/installer/config.sh
|
|
if [[ ''$INSTALLER_MODE == 'none' ]]; then
|
|
echo "Skipping installation phase"
|
|
elif [[ ''$INSTALLER_MODE == 'docker' ]]; then
|
|
install_docker
|
|
elif [[ ''$INSTALLER_MODE == 'lunanode' ]]; then
|
|
install_lunanode
|
|
fi
|
|
} |