From: Frank Brehm Date: Thu, 25 Jun 2020 14:48:24 +0000 (+0200) Subject: Adding yum install option for installing Legato client X-Git-Tag: 2.1.2^2~7^2~5^2~2 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=79c42e2c08a61ac28b381a7e93043c7dd2b39c87;p=pixelpark%2Fcreate-vmware-tpl.git Adding yum install option for installing Legato client --- diff --git a/snippets/tpl.350.legato.sh b/snippets/tpl.350.legato.sh index 345f437..929f128 100644 --- a/snippets/tpl.350.legato.sh +++ b/snippets/tpl.350.legato.sh @@ -16,13 +16,13 @@ install_legato() { local url_man="${COBBLER_URL}/custom/legato/lgtoman-latest.x86_64.rpm" echo "Installing lgtoclnt ..." - if yum install -y "lgtoclnt" ; then + if yum install -y --nogpgcheck "lgtoclnt" ; then : else echo "[$(date)]: Could not install lgtoclnt" | tee -a "${ERROR_POINTER}" fi echo "Installing lgtoman ..." - if yum install -y "lgtoman" ; then + if yum install -y --nogpgcheck "lgtoman" ; then : else echo "[$(date)]: Could not install lgtoman" | tee -a "${ERROR_POINTER}"