diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-11-23 21:01:15 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-11-23 21:36:47 +0100 |
commit | 22055a3a31ad98c96eded65dd5757ccda8050cff (patch) | |
tree | 0f1e2d5506a97b7381baa030ac4bf566ae03060d /sys-apps | |
parent | sys-cluster/glusterfs: remove unused patches (diff) | |
download | gentoo-22055a3a31ad98c96eded65dd5757ccda8050cff.tar.gz gentoo-22055a3a31ad98c96eded65dd5757ccda8050cff.tar.bz2 gentoo-22055a3a31ad98c96eded65dd5757ccda8050cff.zip |
sys-apps/hw-probe: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/23059
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/hw-probe/files/hw-probe-1.5-disable-automatic-upload.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sys-apps/hw-probe/files/hw-probe-1.5-disable-automatic-upload.patch b/sys-apps/hw-probe/files/hw-probe-1.5-disable-automatic-upload.patch deleted file mode 100644 index 4f16c0d87fae..000000000000 --- a/sys-apps/hw-probe/files/hw-probe-1.5-disable-automatic-upload.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 6a211f965c21f1aa2e8612bcd7e2966ce8e8c607 Mon Sep 17 00:00:00 2001 -From: Conrad Kostecki <conikost@gentoo.org> -Date: Wed, 23 Sep 2020 22:26:45 +0200 -Subject: [PATCH] hw-probe.pl: disable automatic upload - -Due security concerns, running 'hw-probe.pl' without any parameters -shouldn't upload directly by default all data. Instead, the user should -add '-upload' if he really wants that. - -Signed-off-by: Conrad Kostecki <conikost@gentoo.org> ---- - hw-probe.pl | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -diff --git a/hw-probe.pl b/hw-probe.pl -index b71f250..1bceb0e 100644 ---- a/hw-probe.pl -+++ b/hw-probe.pl -@@ -217,15 +217,13 @@ - - if($#ARGV_COPY==-1) - { # Run from STDIN -- print "Executing hw-probe -all -upload\n\n"; -+ print "Executing hw-probe -all\n\n"; - $Opt{"All"} = 1; -- $Opt{"Upload"} = 1; - } - elsif($#ARGV_COPY==0 and grep { $ARGV_COPY[0] eq $_ } ("-snap", "-flatpak")) - { # Run by desktop file -- print "Executing hw-probe -all -upload\n\n"; -+ print "Executing hw-probe -all\n\n"; - $Opt{"All"} = 1; -- $Opt{"Upload"} = 1; - - if($SNAP_DESKTOP or $FLATPAK_DESKTOP) - { # Desktop |