Skip to content

Commit

Permalink
Merge branch 'master' into minimal
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Broer committed Oct 14, 2015
2 parents d939127 + ccef22b commit 22365dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# go-dnsmasq
*Version 0.9.2*
*Version 0.9.3*

go-dnsmasq is a lightweight (1.4 MB) caching DNS forwarder/proxy optimized for running in Docker containers.

Expand Down Expand Up @@ -34,8 +34,8 @@ GLOBAL OPTIONS:
--stubzones, -z domains to resolve using a specific nameserver: ‘domain[,domain]/host[:port]‘ [$DNSMASQ_STUB]
--hostsfile, -f full path to hostsfile (e.g. ‘/etc/hosts‘) [$DNSMASQ_HOSTSFILE]
--hostsfile-poll, -p "0" how frequently to poll hostsfile (in seconds, ‘0‘ to disable) [$DNSMASQ_POLL]
--search-domain, -s specify search domain (takes precedence over /etc/resolv.conf) [$DNSMASQ_SEARCH]
--append-domain, -a enable suffixing single-label queries with search domain [$DNSMASQ_APPEND]
--search-domains, -s specify SEARCH domains taking precedence over /etc/resolv.conf: ‘fqdn[,fqdn]‘ [$DNSMASQ_SEARCH]
--append-search-domains, -a enable suffixing single-label queries with SEARCH domains [$DNSMASQ_APPEND]
--rcache, -r "0" capacity of the response cache (‘0‘ to disable caching) [$DNSMASQ_RCACHE]
--rcache-ttl "60" TTL of entries in the response cache [$DNSMASQ_RCACHE_TTL]
--no-rec disable recursion [$DNSMASQ_NOREC]
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ func main() {
cli.StringFlag{
Name: "search-domains, s",
Value: "",
Usage: "Specify SEARCH domains taking precedence over /etc/resolv.conf: ‘fqdn[,fqdn]‘",
Usage: "specify SEARCH domains taking precedence over /etc/resolv.conf: ‘fqdn[,fqdn]‘",
EnvVar: "DNSMASQ_SEARCH",
},
cli.BoolFlag{
Name: "append-search-domains, a",
Usage: "enable suffixing single-label queries with SEARCH domain",
Usage: "enable suffixing single-label queries with SEARCH domains",
EnvVar: "DNSMASQ_APPEND",
},
cli.BoolFlag{
Expand Down

0 comments on commit 22365dd

Please # to comment.