InstallationΒΆ

  1. Download the latest stable release and unpack it:

    # Set latest release as of writing this
    LATEST="0.0.3"
    
    # Download latest release
    wget --content-disposition https://github.com/OSC/ood_auth_map/archive/v${LATEST}.tar.gz
    
    # Unpack this archive
    tar xzvf ood_auth_map-${LATEST}.tar.gz
    
    # Change working directory
    cd ood_auth_map-${LATEST}
    
  2. Install this package in default PREFIX=/opt/ood/ood_auth_map location:

    sudo scl enable rh-ruby22 -- rake install
    

    Note

    The location of the installation can be changed by altering the PREFIX environment variable:

    sudo scl enable rh-ruby22 -- rake install PREFIX="/tmp/ood_auth_map"