-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Makefile no longer enforces running install and uninstall as root - Removed `Priority` parameter as it is incompatible with A and AAAA records - Oink! No longer attempts to update records with multiple entries. Porkbun API seems to not allow writing annotations so it is better to avoid breaking things and do nothing. (It is not a super common use-case anyways) - Updated `config.json` and the `README.md` documentation - Default `interval` changed to 15 min - Tested Oink! Now it is out of beta
- Loading branch information
Showing
4 changed files
with
128 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
{ | ||
"secretapikey": "<your secret api key here>", | ||
"apikey": "<your api key here>", | ||
"domain": "<your domain here>", | ||
"subdomain": "<your subdomain here>", | ||
"ttl": 600, | ||
"priority": 0, | ||
"interval": 300 | ||
"global": { | ||
"secretapikey": "<your secret api key here>", | ||
"apikey": "<your api key here>", | ||
"interval": 900, | ||
"ttl": 600 | ||
}, | ||
"domains": [ | ||
{ | ||
"domain": "<your domain here>", | ||
"subdomain": "<your subdomain here>" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters