[pbs-devel] [PATCH proxmox-backup 10/14] config: use new dedicated PAM and PBS realm types
Christoph Heiss
c.heiss at proxmox.com
Wed Aug 7 17:24:14 CEST 2024
Thanks for the review!
On Wed, Aug 07, 2024 at 11:24:19AM GMT, Lukas Wagner wrote:
>
> On 2024-07-16 15:45, Christoph Heiss wrote:
> > diff --git a/src/config/mod.rs b/src/config/mod.rs
> > index 324fabca..3931eee9 100644
> > --- a/src/config/mod.rs
> > +++ b/src/config/mod.rs
> > [..]
> > +pub fn update_default_realms() -> Result<(), Error> {
> > [..]
> > + if !pbs_config::domains::exists(&domains, "pbs") {
> > + domains.set_data(
> > + "pbs",
> > + "pbs",
> > + PbsRealmConfig {
> > + realm: "pbs".to_owned(),
> > + comment: Some("Proxmox Backup authentication server".to_owned()),
> > + default: None,
> > + },
> > + )?;
> > + }
>
> Just wondering, would it be a good idea to encode these defaults as
> the `Default::default()` impl for these two types? What do you think?
Yep, sounds good to me, TBH. I'll change that in v2.
More information about the pbs-devel
mailing list