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
27 changes: 0 additions & 27 deletions rust/agama-lib/src/bootloader.rs

This file was deleted.

57 changes: 0 additions & 57 deletions rust/agama-lib/src/bootloader/client.rs

This file was deleted.

53 changes: 0 additions & 53 deletions rust/agama-lib/src/bootloader/http_client.rs

This file was deleted.

48 changes: 0 additions & 48 deletions rust/agama-lib/src/bootloader/model.rs

This file was deleted.

35 changes: 0 additions & 35 deletions rust/agama-lib/src/bootloader/proxies.rs

This file was deleted.

55 changes: 0 additions & 55 deletions rust/agama-lib/src/bootloader/store.rs

This file was deleted.

6 changes: 0 additions & 6 deletions rust/agama-lib/src/install_settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@
//! Configuration settings handling
//!
//! This module implements the mechanisms to load and store the installation settings.
use crate::bootloader::model::BootloaderSettings;
use crate::context::InstallationContext;
use crate::hostname::model::HostnameSettings;
use crate::security::settings::SecuritySettings;
use crate::storage::settings::zfcp::ZFCPConfig;
use crate::{network::NetworkSettings, storage::settings::dasd::DASDConfig};
use serde::{Deserialize, Serialize};
Expand All @@ -47,8 +45,6 @@ pub enum InstallSettingsError {
#[derive(Clone, Debug, Default, Serialize, Deserialize, utoipa::ToSchema)]
#[serde(rename_all = "camelCase")]
pub struct InstallSettings {
#[serde(skip_serializing_if = "Option::is_none")]
pub bootloader: Option<BootloaderSettings>,
#[serde(skip_serializing_if = "Option::is_none")]
pub dasd: Option<DASDConfig>,
#[serde(skip_serializing_if = "Option::is_none")]
Expand All @@ -57,8 +53,6 @@ pub struct InstallSettings {
#[schema(value_type = Object)]
pub iscsi: Option<Box<RawValue>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub security: Option<SecuritySettings>,
#[serde(skip_serializing_if = "Option::is_none")]
#[schema(value_type = Object)]
pub storage: Option<Box<RawValue>>,
#[serde(rename = "legacyAutoyastStorage")]
Expand Down
2 changes: 0 additions & 2 deletions rust/agama-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
//! As said, those modules might implement additional stuff, like specific types, clients, etc.

pub mod auth;
pub mod bootloader;
pub mod context;
pub mod error;
pub mod hostname;
Expand All @@ -60,7 +59,6 @@ pub mod profile;
pub mod progress;
pub mod proxies;
pub mod questions;
pub mod security;
pub mod storage;
mod store;
pub use store::Store;
Expand Down
32 changes: 0 additions & 32 deletions rust/agama-lib/src/security.rs

This file was deleted.

Loading
Loading