Accepting request 873296 from home:jsegitz:branches:Base:System

- services-create.pl: Switch to https (bsc#1182395)

OBS-URL: https://build.opensuse.org/request/show/873296
OBS-URL: https://build.opensuse.org/package/show/Base:System/netcfg?expand=0&rev=70
This commit is contained in:
Andreas Jaeger 2021-02-22 06:45:33 +00:00 committed by Git OBS Bridge
parent 1622a93ed7
commit bfbb272059
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Feb 18 07:40:58 UTC 2021 - Johannes Segitz <jsegitz@suse.com>
- services-create.pl: Switch to https (bsc#1182395)
-------------------------------------------------------------------
Mon May 18 07:58:08 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package netcfg
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed

View File

@ -6,7 +6,7 @@ use XML::LibXML::Reader;
binmode( STDOUT, 'utf8:' );
my $portsurl = 'http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml';
my $portsurl = 'https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml';
my $servicesfile = 'services.new';
my $reader = XML::LibXML::Reader->new(location => $portsurl)
or die "cannot read $portsurl\n";