Initial merge with Alt's proxmox

This commit is contained in:
2024-10-28 12:50:49 +03:00
parent 56d7012996
commit 235ed36f10
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ pub fn list_repositories(product: &str) -> Result<APTRepositoriesResult, Error>
let (files, errors, digest) = crate::repositories::repositories()?;
let suite = crate::repositories::get_current_release_codename()?;
let infos = crate::repositories::check_repositories(&files, suite, apt_lists_dir);

View File

@ -273,7 +273,7 @@ impl APTRepositoryFileImpl for APTRepositoryFile {
/// Checks if old or unstable suites are configured and that the Debian security repository
/// has the correct suite. Also checks that the `stable` keyword is not used.
pub fn check_suites(
fn check_suites(
&self,
#[cfg(not(feature = "alt-linux"))]
current_codename: DebianCodename,