From 2ddabf92bd42faf0624abf217aa300726a9fa034 Mon Sep 17 00:00:00 2001 From: Alex Malinovich Date: Thu, 19 Apr 2018 22:44:20 -0700 Subject: [PATCH] Fix zypper options --- plexupdate-core | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexupdate-core b/plexupdate-core index 6266da8..d6401eb 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 -yG" - DISTRO_REINSTALL="zypper install -yG --force" + DISTRO_INSTALL="zypper --no-gpg-checks -n install" + DISTRO_REINSTALL="zypper --no-gpg-checks -n install --force" elif hash apt 2>/dev/null; then DISTRO=ubuntu DISTRO_INSTALL="apt install"