Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def add_openh264_repo(dup=False):
project = project.replace('openSUSE Leap', 'openSUSE Leap 16')
project = project.replace(':', '_').replace(' ', '_')

url = f'http://codecs.opensuse.org/openh264/{project}/'
url = f'https://codecs.opensuse.org/openh264/{project}/'
existing_repo = get_enabled_repo_by_url(url)
if existing_repo:
print(f"Installing from existing repo '{existing_repo.name_expanded()}'")
Expand Down
2 changes: 1 addition & 1 deletion opi/plugins/anydesk.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def run(cls, query):
opi.add_repo(
filename = 'anydesk',
name = 'anydesk',
url = 'http://rpm.anydesk.com/opensuse/$basearch/',
url = 'https://rpm.anydesk.com/opensuse/$basearch/',
gpgkey = 'https://keys.anydesk.com/repos/RPM-GPG-KEY'
)

Expand Down
2 changes: 1 addition & 1 deletion opi/plugins/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(cls, query):
opi.add_repo(
filename = 'google-chrome',
name = 'google-chrome',
url = 'http://dl.google.com/linux/chrome/rpm/stable/x86_64',
url = 'https://dl.google.com/linux/chrome/rpm/stable/x86_64',
gpgkey = 'https://dl.google.com/linux/linux_signing_key.pub'
)

Expand Down
Loading