Skip to content

Commit

Permalink
Updates description and README to avoid irrelevant names
Browse files Browse the repository at this point in the history
  • Loading branch information
DSpeichert committed Apr 6, 2020
1 parent 3f68377 commit 061b86e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,23 +62,23 @@ Schema of zones file

```json
{
"spigu.com.": [
{"name": "spigu.com.", "type": "A", "tTl": 500, "data": "123.123.123.123"},
{"name": "b.spigu.com.", "type": "A", "Class": "CH", "Ttl": 300, "data": "123.123.123.124"},
{"name": "spigu.com", "type": "MX", "Class": "IN", "Ttl": 305, "data": "5 email.spigu.net."},
{"name": "spigu.com", "type": "NS", "data": "marley.spigu.com."},
{"name": "spigu.com", "type": "NS", "Class": "IN", "Ttl": 300, "data": "abc.spigu.com."},
{"name": "spigu.com", "type": "SOA", "TTL": 300, "data": "abc.spigu.com. hostmaster.spigu.com. 1399838297 21600 3600 1814400 300"}
"example.com.": [
{"name": "example.com.", "type": "A", "tTl": 500, "data": "123.123.123.123"},
{"name": "b.example.com.", "type": "A", "Class": "CH", "Ttl": 300, "data": "123.123.123.124"},
{"name": "example.com", "type": "MX", "Class": "IN", "Ttl": 305, "data": "5 email.example.net."},
{"name": "example.com", "type": "NS", "data": "marley.example.com."},
{"name": "example.com", "type": "NS", "Class": "IN", "Ttl": 300, "data": "abc.example.com."},
{"name": "example.com", "type": "SOA", "TTL": 300, "data": "abc.example.com. hostmaster.example.com. 1399838297 21600 3600 1814400 300"}
],
"spigu.net.": [
{"name": "spigu.net.", "type": "A", "tTl": 500, "data": "123.123.123.123"},
{"name": "b.spigu.net.", "type": "A", "Class": "CH", "Ttl": 300, "data": "123.123.123.125"},
{"name": "spigu.net", "type": "MX", "Class": "IN", "Ttl": 305, "data": "5 email.spigu.net."},
{"name": "spigu.net", "type": "NS", "data": "marley.spigu.net."},
{"name": "spigu.net", "type": "NS", "Class": "IN", "Ttl": 300, "data": "abc.spigu.net."},
{"name": "abc.spigu.net", "type": "A", "data": "123.123.123.100"},
{"name": "marley.spigu.net", "type": "A", "data": "123.123.123.101"},
{"name": "spigu.net", "type": "SOA", "TTL": 300, "data": "marley.spigu.net. hostmaster.spigu.net. 1399838297 21600 3600 1814400 300"}
"example.net.": [
{"name": "example.net.", "type": "A", "tTl": 500, "data": "123.123.123.123"},
{"name": "b.example.net.", "type": "A", "Class": "CH", "Ttl": 300, "data": "123.123.123.125"},
{"name": "example.net", "type": "MX", "Class": "IN", "Ttl": 305, "data": "5 email.example.net."},
{"name": "example.net", "type": "NS", "data": "marley.example.net."},
{"name": "example.net", "type": "NS", "Class": "IN", "Ttl": 300, "data": "abc.example.net."},
{"name": "abc.example.net", "type": "A", "data": "123.123.123.100"},
{"name": "def.example.net", "type": "A", "data": "123.123.123.101"},
{"name": "example.net", "type": "SOA", "TTL": 300, "data": "def.example.net. hostmaster.example.net. 1399838297 21600 3600 1814400 300"}
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func startAutoReload(reloadInterval int64) {
func main() {
app := cli.NewApp()
app.Name = "godnsagent"
app.Usage = "Spigu Web Cloud: DNS Server Agent"
app.Usage = "Minimalistic DNS Server/Agent written in Go"
app.Version = version + " " + commit + " built " + date
app.Authors = []*cli.Author{
{
Expand Down

0 comments on commit 061b86e

Please sign in to comment.