Only start one relay with the auto command
We only need one initial relay, as ChanKeep will automatically add as many as it needs when receiving a LIST response.
This commit is contained in:
parent
6ad6d6dc50
commit
b97ebe43ab
|
@ -7,40 +7,30 @@ class AutoCommand:
|
|||
|
||||
def auto(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
||||
if authed:
|
||||
if length == 3:
|
||||
if not spl[1] in main.network.keys():
|
||||
failure("No such network: %s" % spl[1])
|
||||
return
|
||||
if not spl[2].isdigit():
|
||||
failure("Must be a number, not %s" % spl[2])
|
||||
return
|
||||
relayNum = int(spl[2])
|
||||
num, alias = main.network[spl[1]].add_relay(relayNum)
|
||||
success("Successfully created relay %i on network %s with alias %s" % (num, spl[1], alias))
|
||||
if length == 1:
|
||||
for i in main.network.keys():
|
||||
if 1 in main.network[i].relays.keys():
|
||||
info("Skipping %s - first relay exists" % i)
|
||||
else:
|
||||
num, alias = main.network[i].add_relay(1)
|
||||
success("Successfully created first relay on network %s with alias %s" % (i, alias))
|
||||
provision.provisionRelay(num, i)
|
||||
success("Started provisioning network %s on first relay for alias %s" % (i, alias))
|
||||
main.saveConf("network")
|
||||
provision.provisionRelay(relayNum, spl[1])
|
||||
success("Started provisioning network %s on relay %s for alias %s" % (spl[1], spl[2], alias))
|
||||
return
|
||||
elif length == 2:
|
||||
if not spl[1] in main.network.keys():
|
||||
failure("No such network: %s" % spl[1])
|
||||
return
|
||||
for i in main.alias.keys():
|
||||
num, alias = main.network[spl[1]].add_relay(i)
|
||||
if 1 in main.network[spl[1]].relays.keys():
|
||||
failure("First relay exists on %s" % spl[1])
|
||||
return
|
||||
num, alias = main.network[spl[1]].add_relay(1)
|
||||
success("Successfully created relay %i on network %s with alias %s" % (num, spl[1], alias))
|
||||
provision.provisionRelay(num, spl[1])
|
||||
success("Started provisioning network %s on relay %s for alias %s" % (spl[1], num, alias))
|
||||
main.saveConf("network")
|
||||
return
|
||||
elif length == 1:
|
||||
for i in main.network.keys():
|
||||
for x in main.alias.keys():
|
||||
num, alias = main.network[i].add_relay(x)
|
||||
success("Successfully created relay %i on network %s with alias %s" % (num, i, alias))
|
||||
provision.provisionRelay(num, i)
|
||||
success("Started provisioning network %s on relay %s for alias %s" % (i, num, alias))
|
||||
main.saveConf("network")
|
||||
return
|
||||
else:
|
||||
incUsage("auto")
|
||||
return
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"relay": "relay <add|del|list> [<network>] [<num>]",
|
||||
"network": "network <add|del|list> [<name> <address> <port> <ssl|plain> <sasl|ns|none>]",
|
||||
"alias": "alias [<add|del>] [<num>]",
|
||||
"auto": "auto [<network>] [<relay>]",
|
||||
"auto": "auto [<network>]",
|
||||
"cmd": "cmd <relay> <user> <entity> <text ...>",
|
||||
"token": "token <add|del|list> [<key>] [<relay>]",
|
||||
"all": "all <entity> <text ...>",
|
||||
|
|
Loading…
Reference in New Issue