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
1 change: 0 additions & 1 deletion cloudlinux7to8/actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from .configure import *
from .convert import *
from .extensions import *
from .installation import *
from .mariadb import *
from .packages import *
from .perl import *
Expand Down
71 changes: 0 additions & 71 deletions cloudlinux7to8/actions/installation.py

This file was deleted.

7 changes: 5 additions & 2 deletions cloudlinux7to8/upgrader.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class CloudLinux7to8Upgrader(DistUpgrader):

_pre_reboot_delay = 45

_leapp_cloudlinux_rpm_url: str = "https://repo.cloudlinux.com/elevate/elevate-release-latest-el7.noarch.rpm"

def __init__(self):
super().__init__()

Expand Down Expand Up @@ -113,8 +115,8 @@ def construct_actions(
common_actions.AddInProgressSshLoginMessage(new_os),
],
"Leapp installation": [
custom_actions.LeappInstallation(
custom_actions.LEAPP_CLOUDLINUX_RPM_URL,
common_actions.LeappInstallation(
self._leapp_cloudlinux_rpm_url,
[
"leapp-0.18.0-2.el7",
"python2-leapp-0.18.0-2.el7",
Expand All @@ -123,6 +125,7 @@ def construct_actions(
"leapp-upgrade-el7toel8-0.20.0-7.el7",
"leapp-upgrade-el7toel8-deps-0.20.0-7.el7",
],
elevate_repo_id="cloudlinux-elevate",
remove_logs_on_finish=self.remove_leapp_logs
),
],
Expand Down
Loading