Fixed invalid hast name

This commit is contained in:
Lukáš Plevač 2024-12-31 11:58:22 +01:00
parent 2d137f3849
commit 25e5185970
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
pkgname=saturn-discover
pkgver=1.7
pkgrel=8
pkgver=1.9
pkgrel=10
arch=('any')
source=('saturnDiscoverDeamon.py' 'saturnDiscover.service' 'saturnDiscover')
md5sums=('SKIP' 'SKIP' 'SKIP')

View File

@ -133,7 +133,7 @@ elif (sys.argv[1] == "list"):
if (sys.argv[2] == "nodes"):
nodes = loadHosts()
print("NAME MASTER IP MAC CPUs RAM[GB] VERSION GRES")
print("NAME MASTER IP MAC CPUs RAM[GB] VERSION GRES")
print("SELF")
for node in nodes.values():
@ -141,7 +141,7 @@ elif (sys.argv[1] == "list"):
if node["type"] == "master":
isMaster = "YES"
print(f'{node["name"]: <8}{isMaster: <10}{node["ip"]: <18}{node["mac"]: <19}{node["cpus"]: <8}{node["rams"]: <11}{node["version"]: <11}{",".join(node["res"])}')
print(f'{node["name"]: <10}{isMaster: <10}{node["ip"]: <18}{node["mac"]: <19}{node["cpus"]: <8}{int(node["rams"] / (1024.**2) / 1000): <11}{node["version"]: <11}{",".join(node["res"])}')
elif (sys.argv[1] == "get"):
if (argc != 3):

View File

@ -103,7 +103,7 @@ def generateSlurmConfig(source, target):
noMasterHosts += f"{host["name"]},"
if len(noMasterHosts) > 0:
noMasterHosts = noMasterHosts[:-2]
noMasterHosts = noMasterHosts[:-1]
with open(source) as f:
newText=f.read().replace('{%hosts%}', hosts).replace('{%noMasterHosts%}', noMasterHosts).replace('{%masterName%}', MASTER["name"]).replace('{%masterIP%}', MASTER["ip"])