diff --git a/PKGBUILD b/PKGBUILD index 73af3fc..d0d28e7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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') diff --git a/saturnDiscover b/saturnDiscover index 3ec8f71..02c7c26 100755 --- a/saturnDiscover +++ b/saturnDiscover @@ -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): diff --git a/saturnDiscoverDeamon.py b/saturnDiscoverDeamon.py index e20913d..5dfdccc 100644 --- a/saturnDiscoverDeamon.py +++ b/saturnDiscoverDeamon.py @@ -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"])