Update http:// to https:// in code
Where https is working, code was updated to use it.
This commit is contained in:
parent
9852064e35
commit
f4ede5339f
7 changed files with 7 additions and 7 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[hub]
|
||||
|
||||
## ConfigParser style config file, similar to ini files
|
||||
## http://docs.python.org/library/configparser.html
|
||||
## https://docs.python.org/library/configparser.html
|
||||
##
|
||||
## Note that multiline values can be set by indenting subsequent lines
|
||||
## (which means you should not indent regular lines)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ License: LGPLv2 and GPLv2+
|
|||
# koji.ssl libs (from plague) are GPLv2+
|
||||
Summary: Build system tools
|
||||
Group: Applications/System
|
||||
URL: http://fedorahosted.org/koji
|
||||
URL: https://pagure.io/koji
|
||||
Source: https://fedorahosted.org/released/koji/koji-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
|
|
|||
|
|
@ -1028,7 +1028,7 @@ class TaskManager(object):
|
|||
# df -iP path ?
|
||||
# memory (meminfo/vmstat)
|
||||
# vmstat fields 3-6 (also 7-8 for swap)
|
||||
# http://www.redhat.com/advice/tips/meminfo.html
|
||||
# https://www.redhat.com/advice/tips/meminfo.html
|
||||
# cpu cycles (vmstat?)
|
||||
# vmstat fields 13-16 (and others?)
|
||||
# others?:
|
||||
|
|
|
|||
|
|
@ -445,7 +445,7 @@ class adler32_constructor(object):
|
|||
def __init__(self, arg=''):
|
||||
self._value = adler32(arg) & 0xffffffffL
|
||||
#the bitwise and works around a bug in some versions of python
|
||||
#see: http://bugs.python.org/issue1202
|
||||
#see: https://bugs.python.org/issue1202
|
||||
|
||||
def update(self, arg):
|
||||
self._value = adler32(arg, self._value) & 0xffffffffL
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import sys
|
|||
|
||||
# We have to do this craziness because 'import koji' is ambiguous. Is it the
|
||||
# koji module, or the koji cli module. Jump through hoops accordingly.
|
||||
# http://stackoverflow.com/questions/67631/how-to-import-a-module-given-the-full-path
|
||||
# https://stackoverflow.com/questions/67631/how-to-import-a-module-given-the-full-path
|
||||
CLI_FILENAME = os.path.dirname(__file__) + "/../../cli/koji"
|
||||
if sys.version_info[0] >= 3:
|
||||
import importlib.util
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ unprotected_keys =
|
|||
redhat-beta
|
||||
|
||||
server = https://koji.fedoraproject.org/kojihub
|
||||
weburl = http://koji.fedoraproject.org/koji
|
||||
weburl = https://koji.fedoraproject.org/koji
|
||||
|
||||
# The service name of the principal being used by the hub
|
||||
#krbservice = host
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@
|
|||
[main]
|
||||
server=http://localhost/kojihub/
|
||||
krbservice=host
|
||||
remote=http://koji.fedoraproject.org/kojihub
|
||||
remote=https://koji.fedoraproject.org/kojihub
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue