diff --git a/launcher/src/main.rs b/launcher/src/main.rs index aef09433..63676392 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -1209,16 +1209,6 @@ fn terminate(process_name: &str, mut process: Child, timeout: Duration) -> io::R } fn main() -> Result<(), LauncherError> { - match Command::new("ldconfig").spawn() { - Ok(_) => {} - Err(err) => { - tracing::warn!( - "Unable to refresh ldconfig cache. Skipping (useless in most cases). Details {:?}", - err - ) - } - } - // Pattern match configuration let args: Args = Args::parse();