diff --git a/domains/ahmed.json b/domains/ahmed.json new file mode 100644 index 000000000..39d15aa75 --- /dev/null +++ b/domains/ahmed.json @@ -0,0 +1,11 @@ +{ + "description": "Ahmed's personal site", + "repo": "https://github.com/Dropheart", + "owner": { + "username": "dropheart", + "email": "ahmed@techfromtheheart.com" + }, + "record": { + "URL": "https://techfromtheheart.com" + } +} diff --git a/domains/beno.json b/domains/beno.json new file mode 100644 index 000000000..9c0ceb3e8 --- /dev/null +++ b/domains/beno.json @@ -0,0 +1,11 @@ +{ + "description": "Beno's personal developer website", + "repo": "https://github.com/benosambinu/benosambinu.github.io", + "owner": { + "username": "benosambinu", + "email": "benosbs@gmail.com" + }, + "record": { + "CNAME": "benosambinu.github.io" + } +} diff --git a/domains/dipan.json b/domains/dipan.json index acdf3dbc4..cd7f19ce0 100644 --- a/domains/dipan.json +++ b/domains/dipan.json @@ -6,6 +6,6 @@ "email": "dipanroy@mindwebs.org" }, "record": { - "CNAME": "dipanroy.com" + "A": "115.187.62.14" } } diff --git a/scripts/reply.js b/scripts/reply.js index 71d78bd23..233f56ed4 100644 --- a/scripts/reply.js +++ b/scripts/reply.js @@ -24,15 +24,13 @@ Don't worry, you can create a new pull request with the corrections ## Love/Hate the service? **Love it?** Leave it a **star**! Also consider donating so that I can keep this service running forever! - **Hate it?** Please leave your feedback by [creating an issue](https://github.com/is-a-dev/register/issues/new/choose). I would really like to keep improving this service for other users. ## Wanna support this project? Help me in my mission to keep this service alive forever by donating! -Buy Me A Coffee -Liberapay recurring donation button +Buy Me A Coffee Liberapay recurring donation button `; diff --git a/scripts/verify-record.sh b/scripts/verify-record.sh new file mode 100644 index 000000000..a4fc0da6a --- /dev/null +++ b/scripts/verify-record.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +sed \ + -e 's/\.json.*$/.is-a.dev/g' \ + -e 's/^\s*domains\///g' \ + -e '/^\s*$/d' \ +| while read domain; do + echo "$domain"; + dig "$domain" +noall +answer && echo "done" || echo "x"; +done; +