forked from agama-project/agama
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee50918
commit 43fed96
Showing
4 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright (c) [2024] SUSE LLC | ||
# | ||
# All Rights Reserved. | ||
# | ||
# This program is free software; you can redistribute it and/or modify it | ||
# under the terms of version 2 of the GNU General Public License as published | ||
# by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
# more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, contact SUSE LLC. | ||
# | ||
# To contact SUSE LLC about this file by physical or electronic mail, you may | ||
# find current contact information at www.suse.com. | ||
|
||
require "agama/storage/config_checkers/base" | ||
require "yast/i18n" | ||
|
||
module Agama | ||
module Storage | ||
module ConfigCheckers | ||
# Class for checking the boot config. | ||
class Boot < Base | ||
include Yast::I18n | ||
|
||
# Boot config issues. | ||
# | ||
# @return [Array<Issue>] | ||
def issues | ||
[missing_boot_device_issue].compact | ||
end | ||
|
||
private | ||
|
||
# @return [Configs::Boot] | ||
def boot | ||
storage_config.boot | ||
end | ||
|
||
# @return [Issue, nil] | ||
def missing_boot_device_issue | ||
return unless boot.configure? && boot.device | ||
return if storage_config.drives.any? { |d| d.alias == boot.device } | ||
|
||
# TRANSLATORS: %s is the replaced by a device alias (e.g., "boot"). | ||
error(format(_("There is no boot device with alias '%s'"), boot.device)) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters