mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-04-05 00:00:03 +03:00
Add env. variable BCACHEFS_BLOCK_SCAN
Introduce an env. variable for users that have a broken blkid which renders the udev db as incomplete. Only checks for the existence of the variable, not its value. Signed-off-by: Tony Asleson <tasleson@redhat.com>
This commit is contained in:
parent
1fb1898b24
commit
761ef99f91
@ -5,8 +5,7 @@ use clap::Parser;
|
||||
use uuid::Uuid;
|
||||
use std::io::{stdout, IsTerminal};
|
||||
use std::path::PathBuf;
|
||||
use std::fs;
|
||||
use std::str;
|
||||
use std::{fs, str, env};
|
||||
use crate::key;
|
||||
use crate::key::UnlockPolicy;
|
||||
use std::ffi::{CString, c_char, c_void};
|
||||
@ -124,6 +123,12 @@ fn device_property_map(dev: &udev::Device) -> HashMap<String, String> {
|
||||
|
||||
fn udev_bcachefs_info() -> anyhow::Result<HashMap<String, Vec<String>>> {
|
||||
let mut info = HashMap::new();
|
||||
|
||||
if env::var("BCACHEFS_BLOCK_SCAN").is_ok() {
|
||||
debug!("Checking all block devices for bcachefs super block!");
|
||||
return Ok(info);
|
||||
}
|
||||
|
||||
let mut udev = udev::Enumerator::new()?;
|
||||
|
||||
debug!("Walking udev db!");
|
||||
|
Loading…
Reference in New Issue
Block a user