Merge maddyctl and maddy executabes

Closes #432.
This commit is contained in:
fox.cpp 2022-01-07 00:37:29 +03:00
parent 9b1ee1b52f
commit c0eacfa0f3
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
25 changed files with 1343 additions and 1384 deletions

View file

@ -21,9 +21,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package dns
import (
"flag"
maddycli "github.com/foxcpp/maddy/internal/cli"
"github.com/urfave/cli/v2"
)
func init() {
flag.StringVar(&overrideServ, "debug.dnsoverride", "system-default", "replace the DNS resolver address")
maddycli.AddGlobalFlag(&cli.StringFlag{
Name: "debug.dnsoverride",
Usage: "replace the DNS resolver address",
Value: "system-default",
Destination: &overrideServ,
})
}