Update nodemgmt-scripts.sh
This commit is contained in:
@@ -67,14 +67,11 @@ MAIN_MENU() {
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
service)
|
service)
|
||||||
if [ "$2" = "nginx" ]; then SER='NGINX'
|
if [ "$2" = "nginx" ]; then SER='NGINX'
|
||||||
elif [ "$2" = "haproxy" ]; then SER='HAProxy'
|
elif [ "$2" = "haproxy" ]; then SER='HAProxy'
|
||||||
elif [ "$2" = "gogs" ]; then SER='Gogs'
|
elif [ "$2" = "gogs" ]; then SER='Gogs'
|
||||||
fi
|
fi
|
||||||
#if [ "$3" = "start" ]; then STA='Starting'; $STAP='Started'
|
|
||||||
#elif [ "$3" = "stop" ]; then STA='Stopping'; $STAP='Stopped'
|
echo ""
|
||||||
#elif [ "$3" = "restart" ]; then STA='Restarting'; $STAP='Restarted'
|
|
||||||
#elif [ "$3" = "reload" ]; then STA='Reloading'; $STAP='Reloaded'
|
|
||||||
#fi
|
|
||||||
STA="$(tr '[:lower:]' '[:upper:]' <<< ${3:0:1})${3:1}"
|
STA="$(tr '[:lower:]' '[:upper:]' <<< ${3:0:1})${3:1}"
|
||||||
echo -e "${idsCL[LightGreen]}[[${SER} ${STA}ing]]${idsCL[Default]}"
|
echo -e "${idsCL[LightGreen]}[[${SER} ${STA}ing]]${idsCL[Default]}"
|
||||||
|
|
||||||
@@ -98,83 +95,13 @@ case "$1" in
|
|||||||
echo -e "${idsCL[Green]}OK${idsCL[Default]}"
|
echo -e "${idsCL[Green]}OK${idsCL[Default]}"
|
||||||
else echo -e "${idsCL[Red]}ERROR${idsCL[Default]}"
|
else echo -e "${idsCL[Red]}ERROR${idsCL[Default]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
echo -e "${idsCL[Green]}${SER} has been ${STA}ed${idsCL[Default]}"
|
echo -e "${idsCL[Green]}${SER} has been ${STA}ed${idsCL[Default]}"
|
||||||
|
echo ""
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
|
||||||
haproxy-start)
|
|
||||||
sleep 15
|
|
||||||
echo -e "${idsCL[LightBlue]}HAProxy Starting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service haproxy start
|
|
||||||
ssh root@10.5.10.52 service haproxy start
|
|
||||||
ssh root@10.5.10.53 service haproxy start
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
haproxy-stop)
|
|
||||||
echo -e "${idsCL[LightBlue]}HAProxy Stopping...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service haproxy stop
|
|
||||||
ssh root@10.5.10.52 service haproxy stop
|
|
||||||
ssh root@10.5.10.53 service haproxy stop
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
haproxy-restart)
|
|
||||||
sleep 15
|
|
||||||
echo -e "${idsCL[LightBlue]}HAProxy Starting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service haproxy restart
|
|
||||||
ssh root@10.5.10.52 service haproxy restart
|
|
||||||
ssh root@10.5.10.53 service haproxy restart
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
gogs-start)
|
|
||||||
echo -e "${idsCL[LightBlue]}Gogs Starting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service gogs start
|
|
||||||
ssh root@10.5.10.52 service gogs start
|
|
||||||
ssh root@10.5.10.53 service gogs start
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
gogs-stop)
|
|
||||||
echo -e "${idsCL[LightBlue]}Gogs Stopping...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service gogs stop
|
|
||||||
ssh root@10.5.10.52 service gogs stop
|
|
||||||
ssh root@10.5.10.53 service gogs stop
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
gogs-restart)
|
|
||||||
echo -e "${idsCL[LightBlue]}Gogs Restarting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service gogs restart
|
|
||||||
ssh root@10.5.10.52 service gogs restart
|
|
||||||
ssh root@10.5.10.53 service gogs restart
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
nginx-start)
|
|
||||||
echo -e "${idsCL[LightBlue]}NGINX Starting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service nginx start
|
|
||||||
ssh root@10.5.10.52 service nginx start
|
|
||||||
ssh root@10.5.10.53 service nginx start
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
nginx-stop)
|
|
||||||
echo -e "${idsCL[LightBlue]}NGINX Stopping...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service nginx stop
|
|
||||||
ssh root@10.5.10.52 service nginx stop
|
|
||||||
ssh root@10.5.10.53 service nginx stop
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
nginx-restart)
|
|
||||||
echo -e "${idsCL[LightBlue]}NGINX Restarting...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service nginx restart
|
|
||||||
ssh root@10.5.10.52 service nginx restart
|
|
||||||
ssh root@10.5.10.53 service nginx restart
|
|
||||||
exit 0;;
|
|
||||||
|
|
||||||
nginx-reload)
|
|
||||||
echo -e "${idsCL[LightBlue]}NGINX Reloading...${idsCL[Default]}"
|
|
||||||
ssh root@10.5.10.51 service nginx reload
|
|
||||||
ssh root@10.5.10.52 service nginx reload
|
|
||||||
ssh root@10.5.10.53 service nginx reload
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
|
|
||||||
newcert)
|
newcert)
|
||||||
"$0" haperoxy-stop
|
"$0" haperoxy-stop
|
||||||
echo -e "${Green}Requesting Certificate for '${BBlue}$2${Green}'...${idsCL[Default]}"
|
echo -e "${Green}Requesting Certificate for '${BBlue}$2${Green}'...${idsCL[Default]}"
|
||||||
|
|||||||
Reference in New Issue
Block a user