Skip to content

Commit

Permalink
New schema to support optional "options"
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Alipaz committed Oct 17, 2017
1 parent de2d6a9 commit 49826b4
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions inadyn/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Internet Automated Dynamic DNS Client",
"version": "0.1.8",
"version": "0.1.9",
"slug": "inadyn",
"description": "Inadyn is a small and simple Dynamic DNS, DDNS, client with HTTPS support. A large number of dynamic dns providers are supported (https://github.com/troglobit/inadyn#supported-providers). For those that are not, you can use a custom provider as per this project's documentation (https://github.com/nalipaz/hassio-addons/blob/master/README.md).",
"url": "https://github.com/nalipaz/hassio-addons/tree/master/inadyn",
Expand All @@ -15,15 +15,25 @@
"username": "username",
"password": "password",
"hostname": "dynamic-subdomain.example.com"
}]
}
]
},
"schema": {
"providers": [
{
"provider": "str",
"username": "str",
"password": "str",
"hostname": "str"
"hostname": "str",
"ssl?": "bool",
"user_agent?": "str",
"checkip_ssl?": "bool",
"checkip_server?": "str",
"checkip_command?": "str",
"checkip_path?": "str",
"custom_provider?": "bool",
"ddns_server?": "str",
"ddns_path?": "str"
}
]
}
Expand Down

0 comments on commit 49826b4

Please sign in to comment.