* [pbs-devel] [PATCH proxmox-backup 1/2] api: apt: adapt to proxmox-apt back-end changes
@ 2021-07-29 12:33 Fabian Ebner
2021-07-29 12:33 ` [pbs-devel] [PATCH proxmox-backup 2/2] api: apt: adapt to further " Fabian Ebner
2021-07-30 8:50 ` [pbs-devel] applied: Re: [PATCH proxmox-backup 1/2] api: apt: adapt to " Thomas Lamprecht
0 siblings, 2 replies; 4+ messages in thread
From: Fabian Ebner @ 2021-07-29 12:33 UTC (permalink / raw)
To: pbs-devel
It's up to the caller to provide the current release for standard
repository detection/addition.
Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
---
Dependency bump for proxmox-apt patch #1 from [0] needed.
[0]: https://lists.proxmox.com/pipermail/pve-devel/2021-July/049554.html
src/api2/node/apt.rs | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/src/api2/node/apt.rs b/src/api2/node/apt.rs
index 84d9b79c..ae3dcc72 100644
--- a/src/api2/node/apt.rs
+++ b/src/api2/node/apt.rs
@@ -445,8 +445,11 @@ pub fn get_repositories() -> Result<Value, Error> {
let (files, errors, digest) = proxmox_apt::repositories::repositories()?;
let digest = proxmox::tools::digest_to_hex(&digest);
+ let suite = proxmox_apt::repositories::get_current_release_codename()?;
+
let infos = proxmox_apt::repositories::check_repositories(&files)?;
- let standard_repos = proxmox_apt::repositories::standard_repositories("pbs", &files);
+ let standard_repos =
+ proxmox_apt::repositories::standard_repositories(&files, "pbs", &suite);
Ok(json!({
"files": files,
@@ -484,6 +487,8 @@ pub fn get_repositories() -> Result<Value, Error> {
pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Result<(), Error> {
let (mut files, errors, current_digest) = proxmox_apt::repositories::repositories()?;
+ let suite = proxmox_apt::repositories::get_current_release_codename()?;
+
if let Some(expected_digest) = digest {
let current_digest = proxmox::tools::digest_to_hex(¤t_digest);
crate::tools::assert_if_modified(&expected_digest, ¤t_digest)?;
@@ -492,7 +497,7 @@ pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Re
// check if it's already configured first
for file in files.iter_mut() {
for repo in file.repositories.iter_mut() {
- if repo.is_referenced_repository(handle, "pbs") {
+ if repo.is_referenced_repository(handle, "pbs", &suite) {
if repo.enabled {
return Ok(());
}
@@ -505,7 +510,8 @@ pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Re
}
}
- let (repo, path) = proxmox_apt::repositories::get_standard_repository(handle, "pbs")?;
+ let (repo, path) =
+ proxmox_apt::repositories::get_standard_repository(handle, "pbs", &suite);
if let Some(error) = errors.iter().find(|error| error.path == path) {
bail!(
--
2.30.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pbs-devel] [PATCH proxmox-backup 2/2] api: apt: adapt to further proxmox-apt back-end changes
2021-07-29 12:33 [pbs-devel] [PATCH proxmox-backup 1/2] api: apt: adapt to proxmox-apt back-end changes Fabian Ebner
@ 2021-07-29 12:33 ` Fabian Ebner
2021-07-30 8:50 ` [pbs-devel] applied: " Thomas Lamprecht
2021-07-30 8:50 ` [pbs-devel] applied: Re: [PATCH proxmox-backup 1/2] api: apt: adapt to " Thomas Lamprecht
1 sibling, 1 reply; 4+ messages in thread
From: Fabian Ebner @ 2021-07-29 12:33 UTC (permalink / raw)
To: pbs-devel
Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
---
Dependency bump for proxmox-apt patches #3 and #5 from [0] needed.
[0]: https://lists.proxmox.com/pipermail/pve-devel/2021-July/049554.html
src/api2/node/apt.rs | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/api2/node/apt.rs b/src/api2/node/apt.rs
index ae3dcc72..13b4c80c 100644
--- a/src/api2/node/apt.rs
+++ b/src/api2/node/apt.rs
@@ -447,9 +447,8 @@ pub fn get_repositories() -> Result<Value, Error> {
let suite = proxmox_apt::repositories::get_current_release_codename()?;
- let infos = proxmox_apt::repositories::check_repositories(&files)?;
- let standard_repos =
- proxmox_apt::repositories::standard_repositories(&files, "pbs", &suite);
+ let infos = proxmox_apt::repositories::check_repositories(&files, suite);
+ let standard_repos = proxmox_apt::repositories::standard_repositories(&files, "pbs", suite);
Ok(json!({
"files": files,
@@ -497,7 +496,7 @@ pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Re
// check if it's already configured first
for file in files.iter_mut() {
for repo in file.repositories.iter_mut() {
- if repo.is_referenced_repository(handle, "pbs", &suite) {
+ if repo.is_referenced_repository(handle, "pbs", &suite.to_string()) {
if repo.enabled {
return Ok(());
}
@@ -510,8 +509,7 @@ pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Re
}
}
- let (repo, path) =
- proxmox_apt::repositories::get_standard_repository(handle, "pbs", &suite);
+ let (repo, path) = proxmox_apt::repositories::get_standard_repository(handle, "pbs", suite);
if let Some(error) = errors.iter().find(|error| error.path == path) {
bail!(
--
2.30.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pbs-devel] applied: Re: [PATCH proxmox-backup 1/2] api: apt: adapt to proxmox-apt back-end changes
2021-07-29 12:33 [pbs-devel] [PATCH proxmox-backup 1/2] api: apt: adapt to proxmox-apt back-end changes Fabian Ebner
2021-07-29 12:33 ` [pbs-devel] [PATCH proxmox-backup 2/2] api: apt: adapt to further " Fabian Ebner
@ 2021-07-30 8:50 ` Thomas Lamprecht
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2021-07-30 8:50 UTC (permalink / raw)
To: Proxmox Backup Server development discussion, Fabian Ebner
On 29/07/2021 14:33, Fabian Ebner wrote:
> It's up to the caller to provide the current release for standard
> repository detection/addition.
>
> Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
> ---
>
> Dependency bump for proxmox-apt patch #1 from [0] needed.
>
> [0]: https://lists.proxmox.com/pipermail/pve-devel/2021-July/049554.html
>
> src/api2/node/apt.rs | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
>
applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-07-30 8:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-29 12:33 [pbs-devel] [PATCH proxmox-backup 1/2] api: apt: adapt to proxmox-apt back-end changes Fabian Ebner
2021-07-29 12:33 ` [pbs-devel] [PATCH proxmox-backup 2/2] api: apt: adapt to further " Fabian Ebner
2021-07-30 8:50 ` [pbs-devel] applied: " Thomas Lamprecht
2021-07-30 8:50 ` [pbs-devel] applied: Re: [PATCH proxmox-backup 1/2] api: apt: adapt to " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox