From 79c42e2c08a61ac28b381a7e93043c7dd2b39c87 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 25 Jun 2020 16:48:24 +0200 Subject: [PATCH] Adding yum install option for installing Legato client --- snippets/tpl.350.legato.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}" -- 2.39.5