mirror of
https://git.coolaj86.com/coolaj86/acme-dns-01-namedotcom.js.git
synced 2025-04-20 06:10:49 +00:00
10 lines
258 B
Bash
10 lines
258 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Before assuming there's something wrong with this plugin,
|
|
# you should test that you can use your token with curl first.
|
|
|
|
echo "USERNAME: '$USERNAME'"
|
|
echo "TOKEN: '$TOKEN'"
|
|
curl -f -u "$USERNAME:$TOKEN" https://api.name.com/v4/domains
|