local url_client="${COBBLER_URL}/custom/legato/lgtoclnt-latest.x86_64.rpm"
local url_man="${COBBLER_URL}/custom/legato/lgtoman-latest.x86_64.rpm"
- echo "Installing from URL '${url_client}' ..."
- if yum install -y "${url_client}" ; then
+ echo "Installing lgtoclnt ..."
+ if yum install -y "lgtoclnt" ; then
:
else
- echo "[$(date)]: Could not install from ${url_client}" | tee -a "${ERROR_POINTER}"
+ echo "[$(date)]: Could not install lgtoclnt" | tee -a "${ERROR_POINTER}"
fi
- echo "Installing from URL '${url_man}' ..."
- if yum install -y "${url_man}" ; then
+ echo "Installing lgtoman ..."
+ if yum install -y "lgtoman" ; then
:
else
- echo "[$(date)]: Could not install from ${url_man}" | tee -a "${ERROR_POINTER}"
+ echo "[$(date)]: Could not install lgtoman" | tee -a "${ERROR_POINTER}"
fi
mkdir -pv /nsr/res