Compare commits
1 Commits
9a935de93f
...
41f22a8aa9
| Author | SHA1 | Date | |
|---|---|---|---|
|
41f22a8aa9
|
@@ -43,11 +43,12 @@ data:
|
||||
fi
|
||||
|
||||
PAYLOAD=$( jq -n \
|
||||
'{random_port: true}' );
|
||||
--arg random_port "true" \
|
||||
'{random_port: $random_port}' );
|
||||
|
||||
echo " ";
|
||||
echo ">> Setting port to random ...";
|
||||
HTTP_STATUS=$(curl -i -X POST --silent -b cookie -c cookie --write-out '%{http_code}' --output response_body_random.json --data "json=$PAYLOAD" "${API_ENDPOINT}/app/setPreferences");
|
||||
HTTP_STATUS=$(curl -i -X POST --silent -b cookie -c cookie --write-out '%{http_code}' --output response_body_random.json --data "$PAYLOAD" "${API_ENDPOINT}/app/setPreferences");
|
||||
|
||||
if [ "$HTTP_STATUS" == "200" ]; then
|
||||
echo ">> Random port set"
|
||||
@@ -62,11 +63,12 @@ data:
|
||||
sleep 5;
|
||||
|
||||
PAYLOAD=$( jq -n \
|
||||
"{listen_port: ${1}}" );
|
||||
--arg listen_port "${1}" \
|
||||
'{listen_port: $listen_port}' );
|
||||
|
||||
echo " ";
|
||||
echo ">> Updating port with ${1} ...";
|
||||
curl -i -X POST --silent -b cookie -c cookie --write-out '%{http_code}' --output response_body_update.json --data "json=$PAYLOAD" "${API_ENDPOINT}/app/setPreferences";
|
||||
curl -i -X POST --silent -b cookie -c cookie --write-out '%{http_code}' --output response_body_update.json --data "$PAYLOAD" "${API_ENDPOINT}/app/setPreferences";
|
||||
|
||||
if [ "$HTTP_STATUS" == "200" ]; then
|
||||
echo ">> Port set"
|
||||
|
||||
Reference in New Issue
Block a user