]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Adding yum install option for installing Legato client
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 25 Jun 2020 14:48:24 +0000 (16:48 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 25 Jun 2020 14:48:24 +0000 (16:48 +0200)
snippets/tpl.350.legato.sh

index 345f43769993e24cfb6d672d79d595f01ad620bf..929f1283653b28f66d6632af03aa1e1b10e122d8 100644 (file)
@@ -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}"