1
0

[minor] Cleanup some log messages & README

This commit is contained in:
Chris Dzombak 2019-09-26 11:23:36 -04:00
parent 8309b1bb64
commit 3b401c5a1f
No known key found for this signature in database
GPG Key ID: 18A9AB4B8C54123A
2 changed files with 5 additions and 5 deletions

View File

@ -20,12 +20,12 @@ Once the module is fetched, you should be able to compile the program using `go
```bash ```bash
git clone https://github.com/anaganisk/digitalocean-dynamic-dns-ip.git git clone https://github.com/anaganisk/digitalocean-dynamic-dns-ip.git
``` ```
create a file ".digitalocean-dynamic-ip.json"(dot prefix to hide the file) and place it user home directory and add the following json create a file ".digitalocean-dynamic-ip.json" (dot prefix to hide the file) and place it user home directory and add the following json
```json ```json
{ {
"apikey": "samplekeydasjkdhaskjdhrwofihsamplekey", "apikey": "samplekeydasjkdhaskjdhrwofihsamplekey",
"doPageSize" : 20, "doPageSize": 20,
"useIPv4": true, "useIPv4": true,
"useIPv6": false, "useIPv6": false,
"allowIPv4InIPv6": false, "allowIPv4InIPv6": false,

View File

@ -217,10 +217,10 @@ func UpdateRecords(domain Domain, ipv4, ipv6 net.IP) {
doRecords := GetDomainRecords(domain.Domain) doRecords := GetDomainRecords(domain.Domain)
// look for the item to update // look for the item to update
if len(doRecords) < 1 { if len(doRecords) < 1 {
log.Printf("%s: No DNS records found in Digital Ocean", domain.Domain) log.Printf("%s: No DNS records found in DigitalOcean", domain.Domain)
return return
} }
log.Printf("%s: %d DNS records found in Digital Ocean", domain.Domain, len(doRecords)) log.Printf("%s: %d DNS records found in DigitalOcean", domain.Domain, len(doRecords))
for _, toUpdateRecord := range domain.Records { for _, toUpdateRecord := range domain.Records {
if toUpdateRecord.Type != "A" && toUpdateRecord.Type != "AAAA" { if toUpdateRecord.Type != "A" && toUpdateRecord.Type != "AAAA" {
log.Printf("%s: Unsupported type (Only A and AAAA records supported) for updates %+v", domain.Domain, toUpdateRecord) log.Printf("%s: Unsupported type (Only A and AAAA records supported) for updates %+v", domain.Domain, toUpdateRecord)
@ -338,7 +338,7 @@ func main() {
config = GetConfig() config = GetConfig()
currentIPv4, currentIPv6 := CheckLocalIPs() currentIPv4, currentIPv6 := CheckLocalIPs()
if currentIPv4 == nil && currentIPv6 == nil { if currentIPv4 == nil && currentIPv6 == nil {
log.Fatal("current IP addresses are not a valid, or both are disabled in the config. Check you configuration and internet connection") log.Fatal("Current IP addresses are not valid, or both are disabled in the config. Check your configuration and internet connection.")
} }
for _, domain := range config.Domains { for _, domain := range config.Domains {
log.Printf("%s: START", domain.Domain) log.Printf("%s: START", domain.Domain)