@ -69,14 +69,14 @@ var subCmdAdminCreateNetwork = subCmd{
"Domain name that should be used as the root domain in the network.",
)
subnetStr:=flags.StringP(
"subnet","s","",
"CIDR which denotes the subnet that IPs hosts on the network can be assigned.",
ipNetStr:=flags.StringP(
"ip-net","i","",
`IP+prefix (e.g. "10.10.0.1/16") which denotes the IP of this host, which will be the first host in the network, and the range of IPs which other hosts in the network can be assigned`,
)
hostName:=flags.StringP(
"name","n","",
"Name of the host which will be the first host in the network",
"Name of this host, which will be the first host in the network",
)
iferr:=flags.Parse(subCmdCtx.args);err!=nil{
@ -87,15 +87,15 @@ var subCmdAdminCreateNetwork = subCmd{