File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,8 @@ packaging:
86
86
- libiconv 1.18
87
87
* Update MacOSX packages to use OpenSSL 3.4.0
88
88
* fix #816: Support --delaytime option in linux perl installer
89
+ * fix #797: Use option to disable local package gpg check when installing with dnf
90
+ in linux perl installer
89
91
90
92
1.11 Tue, 24 Sep 2024
91
93
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ sub install {
136
136
$self -> _prepareDistro();
137
137
my $command = $self -> {_yum } ? " yum -y install @rpms " :
138
138
$self -> {_zypper } ? " zypper -n install -y --allow-unsigned-rpm @rpms " :
139
- $self -> {_dnf } ? " dnf -y install @rpms " : " " ;
139
+ $self -> {_dnf } ? " dnf -y install --setopt=localpkg_gpgcheck=0 @rpms " : " " ;
140
140
die " Unsupported rpm based platform\n " unless $command ;
141
141
my $err = $self -> system ($command );
142
142
if ($? >> 8 && $self -> {_yum } && $self -> downgradeAllowed()) {
You can’t perform that action at this time.
0 commit comments