new install node-js 16 option in install software script.

This commit is contained in:
2022-07-07 19:39:09 +00:00
parent 1f089522cc
commit 9d2ae57e07
2 changed files with 375 additions and 0 deletions
+14
View File
@@ -76,6 +76,20 @@ case $nginx_log in
;;
esac
echo "----- Install NodeJS 16 -----------------------------"
read -p 'Install NodeJS 16? [y/N]: ' node_lang
case $node_lang in
[Yy]* )
echo "----- Calling NodeJS Install Script -----------------"
LOCATION=`dirname "$0"`
sudo "${LOCATION}/../nodejs-install/nodesource_setup.sh"
echo "----- Completed NodeJS Install Script ---------------"
;;
* )
echo 'Skipping'
;;
esac
echo "----- Install Go Lang -------------------------------"
read -p 'Install Go Lang? [y/N]: ' go_lang
case $go_lang in