diff --git a/healthcheck.sh b/healthcheck.sh
deleted file mode 100755
index 85ece96..0000000
--- a/healthcheck.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-if ! [ -f /tmp/IPv4.json ] && ! [ -f /tmp/IPv6.json ]; then 
-  exit 1
-fi
-
-if [ -f /tmp/IPv4.json ] && [ "$(jq -r .status </tmp/IPv4.json)" != "success" ]; then 
-  exit 1
-fi
-
-if [ -f /tmp/IPv6.json ] && [ "$(jq -r .status </tmp/IPv6.json)" != "success" ]; then 
-  exit 1
-fi
-
-exit 0