From 573471eb394ec3d1113cea9e6768b52bda087f4f Mon Sep 17 00:00:00 2001 From: hiroTochigi Date: Wed, 14 Feb 2024 21:20:14 -0600 Subject: [PATCH] Add test/experiment to .gitignore and remove src/aws/test.sh --- .gitignore | 1 + src/aws/test.sh | 25 ------------------------- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 src/aws/test.sh diff --git a/.gitignore b/.gitignore index 71f9bc7f..64c86501 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /test +/experiment #confs /vpn/conf/* diff --git a/src/aws/test.sh b/src/aws/test.sh deleted file mode 100644 index cabf1b34..00000000 --- a/src/aws/test.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -#BASE=$HOME -BASE=/home/pi - -function test(){ - balloonName=$(setBalloonName "$1") - if ! isBalloonNameValid "$balloonName"; then - echo "Please provide a valid balloon name" - exit 1 - fi - - instanceId=$(getValueByAttribute $balloonName instanceId) - - if [ "$instanceId" = "null" ]; then - echo "$balloonName is already deleted" - exit 1 - fi - - publicIp=$(getValueByAttribute $balloonName publicIp) - - echo $publicIp - - -} \ No newline at end of file