From 60076c2dad98b04b1f2aacee03b71d8b05213f02 Mon Sep 17 00:00:00 2001 From: Alex Malinovich Date: Thu, 19 Apr 2018 22:33:59 -0700 Subject: [PATCH] Ignore GPG signatures for zypper --- plexupdate-core | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexupdate-core b/plexupdate-core index 3a41908..6266da8 100755 --- a/plexupdate-core +++ b/plexupdate-core @@ -183,8 +183,8 @@ check_distro() { DISTRO_REINSTALL="yum -y reinstall" elif hash zypper 2>/dev/null; then DISTRO=redhat - DISTRO_INSTALL="zypper install -y" - DISTRO_REINSTALL="zypper install -y --force" + DISTRO_INSTALL="zypper install -yG" + DISTRO_REINSTALL="zypper install -yG --force" elif hash apt 2>/dev/null; then DISTRO=ubuntu DISTRO_INSTALL="apt install"