Add script to check for buyvm slice availability
This commit is contained in:
11
check_buyvm_slice_available.sh
Executable file
11
check_buyvm_slice_available.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
URL="https://my.frantech.ca/cart.php?gid=39"
|
||||
|
||||
N=$(curl -s "$URL" \
|
||||
| pup '#product1 > div:nth-child(4) > div:nth-child(2)' \
|
||||
| grep -o '[0-9]\+')
|
||||
|
||||
if [ "$N" -gt 0 ]; then
|
||||
curl -n -d "KVM slices available: $N" https://ntfy.franpenedo.com/general
|
||||
fi
|
||||
Reference in New Issue
Block a user