Add pingdom and statuscake ips and downloaders (#29)

* [main-] add pingdom and statuscake ips and downloaders

* Improved consistency with the original style

* Typo in README

---------

Co-authored-by: Lord Alfred <2259979+lord-alfred@users.noreply.github.com>
This commit is contained in:
Joris Dedieu
2026-03-16 20:35:21 +01:00
committed by GitHub
parent 0a20d4036b
commit 2b4c3606d8
3 changed files with 36 additions and 0 deletions

12
pingdom/downloader.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -euo pipefail
set -x
# get ranges from pingdom
curl -s https://my.pingdom.com/probes/ipv4 > /tmp/pingdom-ipv4.txt
curl -s https://my.pingdom.com/probes/ipv6 > /tmp/pingdom-ipv6.txt
# sort & uniq
sort -V /tmp/pingdom-ipv4.txt | uniq > pingdom/ipv4.txt
sort -V /tmp/pingdom-ipv6.txt | uniq > pingdom/ipv6.txt