-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Package
instead of PackageSystem
#1237
Conversation
f1274e8
to
6a7559d
Compare
log.info "CheckAndInstallPackages -> #{@needed_packages_installed}" | ||
else | ||
@needed_packages_installed = PackageSystem.Installed(@FIREWALL_PACKAGE) | ||
@needed_packages_installed = Package.Installed(@FIREWALL_PACKAGE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good example that we should finally clean susefirewall, as it is dead technology and we use only firewalld.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, but I do not plan to do it in this PR.
@@ -657,15 +657,15 @@ sub UnquoteString { | |||
sub Init { | |||
if (Mode->test ()) { | |||
$package_installed = 1; | |||
y2milestone("TestMode -> PackageSystem->Installed: ", $package_installed); | |||
y2milestone("TestMode -> Package->Installed: ", $package_installed); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dead code. old testsuite is dead and so mode->test
✔️ Public Jenkins job #354 successfully finished |
Adapt to
Package
andPackageSystem
changes. See #1219 for further information.