cmd/waifud-metadatad: fix flag typo

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2021-05-30 20:44:00 -04:00
parent 96a55ef2c1
commit 919499fa1a
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import (
var (
redisURL = flag.String("redis-url", "redis://chrysalis", "the url to dial out to Redis")
wgPort = flag.Int("wireguard-sever-port", 28139, "what port to have the kernel listen on wireguard")
wgPort = flag.Int("wireguard-host-port", 28139, "what port to have the kernel listen on wireguard")
wgHostAddr = flag.String("wireguard-host-addr", "169.254.169.253/30", "what IP range to have for the metadata service")
wgGuestAddr = flag.String("wireguard-guest-addr", "169.254.169.254", "the IP address for the metadata service")
wgInterfaceName = flag.String("wireguard-interface-name", "waifud-metadata", "the wireguard interface for the metadata service")