#!/bin/bash

# Import file with CAuth functions
if [ -s /etc/cauth/cauth_functions ]; then
    . /etc/cauth/cauth_functions
else
    exit 1
fi

# if "sources" parameter not defined in cauth.conf, use IDM source
if [ ! -z "${sources+x}" ] ; then
    _uri="&sources=${sources}"
fi

info="$($get_cmd ${info_url}${_uri})"

clear

echo -e "$info"

