Advertisement
symdrome

Untitled

Jul 16th, 2024
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. set +x
  2.  
  3. DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  4. PRODUCT_NAME="Audioma"
  5. AUDIOMA_INSTALL_DIR="${DIR}"
  6. REPOS_AUDIOMA="audioma"
  7. REPOS_OS_EPEL="epel"
  8. REPOS_OS_CUDA="cuda"
  9.  
  10. CDROM=/dev/sr0
  11. CDROM_DIR=/media
  12. MOUNT=0
  13. OS_DISTRO=$(python -c 'import platform; print platform.linux_distribution(supported_dists=["system"])[0].split()[0].lower()')
  14. OS_VERSION=$(python -c 'import platform; print platform.linux_distribution(supported_dists=["system"])[1]')
  15. OS_MAJOR_VERSION=$(python -c 'import platform; print platform.linux_distribution(supported_dists=["system"])[1].split(".")[0]')
  16.  
  17. FORCE_INSTALL=false
  18. OFFLINE=false
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement