diff --git a/proxmox-apt/src/repositories/standard.rs b/proxmox-apt/src/repositories/standard.rs index e6276400..d998357d 100644 --- a/proxmox-apt/src/repositories/standard.rs +++ b/proxmox-apt/src/repositories/standard.rs @@ -150,13 +150,9 @@ impl APTRepositoryHandle { } APTRepositoryHandle::NoSubscription => "/etc/apt/sources.list".to_string(), APTRepositoryHandle::Test => "/etc/apt/sources.list".to_string(), - APTRepositoryHandle::CephQuincyEnterprise => { - "/etc/apt/sources.list.d/ceph.list".to_string() - } - APTRepositoryHandle::CephQuincyNoSubscription => { - "/etc/apt/sources.list.d/ceph.list".to_string() - } - APTRepositoryHandle::CephQuincyTest => "/etc/apt/sources.list.d/ceph.list".to_string(), + APTRepositoryHandle::CephQuincyEnterprise + | APTRepositoryHandle::CephQuincyNoSubscription + | APTRepositoryHandle::CephQuincyTest => "/etc/apt/sources.list.d/ceph.list".to_string(), } }