Your ROOT_URL in app.ini is https://git.hpc.odu.edu/ but you are visiting https://git.wahab.hpc.odu.edu/wirawan0/WP-hpc-tools/commit/cabacb58cb8ce574f710f8422b49a2bd41a238b8?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

* Also added dump for mount points and disk free for compute nodes.

master
Wirawan Purwanto 9 years ago
parent b6d22cf68b
commit cabacb58cb
  1. 8
      sge/dump-cluster-info.py

@ -223,6 +223,14 @@ def gather_dmesg(hosts=None):
"""Gather tool: for dmesg""" """Gather tool: for dmesg"""
rhosts_pipe_out(("dmesg",), "dmesg.txt", hosts=hosts) rhosts_pipe_out(("dmesg",), "dmesg.txt", hosts=hosts)
def gather_mount(hosts=None):
"""Gather tool: for mount points"""
rhosts_pipe_out(("mount",), "mount.txt", hosts=hosts)
def gather_df(hosts=None):
"""Gather tool: for disk free"""
rhosts_pipe_out(("df",), "df.txt", hosts=hosts)
#def dict_str_sorted(d): #def dict_str_sorted(d):
# return "{" + ", ". # return "{" + ", ".

Loading…
Cancel
Save