1
0
mirror of https://github.com/juanfont/headscale.git synced 2025-08-14 13:51:01 +02:00

Removed shorthand for subnet

This commit is contained in:
Josef Citrine 2021-11-26 14:13:25 +00:00
parent 77a3ac8890
commit 657f8948cc

View File

@ -35,7 +35,7 @@ func init() {
createPreAuthKeyCmd.Flags().
DurationP("expiration", "e", DefaultPreAuthKeyExpiry, "Human-readable expiration of the key (30m, 24h, 365d...)")
createPreAuthKeyCmd.Flags().
StringP("subnet", "s", "", "Subnet to assign new nodes to")
StringP("subnet", "", "", "Subnet to assign new nodes to")
createPreAuthKeyCmd.Flags().
String("ip", "", "IP to assign a node to (only supported for non-resuable keys)")
}