mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
cad597868f
commit
37ac5a14dd
1 changed files with 4 additions and 3 deletions
|
@ -26,9 +26,10 @@ def info():
|
||||||
print(", ", end="")
|
print(", ", end="")
|
||||||
pattern = re.compile(CONF["cluster"]["groups"][group])
|
pattern = re.compile(CONF["cluster"]["groups"][group])
|
||||||
count=0
|
count=0
|
||||||
for ip in nodes:
|
if not nodes == None:
|
||||||
if pattern.match(ip):
|
for ip in nodes:
|
||||||
count=count+1
|
if pattern.match(ip):
|
||||||
|
count=count+1
|
||||||
print("{}({})".format(group,count),end="")
|
print("{}({})".format(group,count),end="")
|
||||||
print()
|
print()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue