12 lines
206 B
Bash
12 lines
206 B
Bash
![]() |
#!/usr/bin/sh
|
||
|
|
||
|
if [ "$1" = "" ] ; then
|
||
|
echo "Usage: stopCNX.sh <number:Server>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
((HTTPPORT=32201+10*($1-1)))
|
||
|
curl -X POST http://localhost:$HTTPPORT/actuator/shutdownapp
|
||
|
sleep 1
|
||
|
echo -e "\n"
|