From 104928bb22ae73ab29d3f7408e528124806de846 Mon Sep 17 00:00:00 2001 From: Harley Travis Date: Wed, 12 Nov 2025 19:42:49 -0600 Subject: [PATCH] Update phreaknet.sh Added a check for openSUSE Leap in the package manager detector section. --- phreaknet.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phreaknet.sh b/phreaknet.sh index b0a408f..e7be1c5 100755 --- a/phreaknet.sh +++ b/phreaknet.sh @@ -328,6 +328,8 @@ elif [ -f /etc/redhat-release ]; then PAC_MAN="yum" elif [ "$OS_DIST_INFO" = "SLES" ]; then PAC_MAN="zypper" +elif [ "$OS_DIST_INFO" = "openSUSE Leap" ]; then + PAC_MAN="zypper" elif [ "$OS_DIST_INFO" = "openSUSE Tumbleweed" ]; then PAC_MAN="zypper" elif [ -r /etc/arch-release ]; then