ncsa / xcat-tools

Useful tools for xCAT
BSD 3-Clause "New" or "Revised" License
8 stars 0 forks source link

Setup should support Rocky Linux #63

Open billglick opened 1 month ago

billglick commented 1 month ago

Update setup.sh with something like the following:

  case "$_osname" in
    rhel)
      _pkgname='https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm'
      ;;
    rocky)
      _pkgname='epel-release'
      ;;
    centos)
      _pkgname='epel-release'
      ;;
billglick commented 1 month ago

Also had to manually install the tabulate python package to get tdf to work:

source /root/xcat-tools/.venv/bin/activate
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org tabulate
deactivate