cryptsetup: allow 'mass' reuse

This commit is contained in:
Mikaël Cluseau
2025-11-20 09:11:12 +01:00
parent ac9d7e8d9d
commit 01a0073e78
7 changed files with 78 additions and 28 deletions
+4
View File
@@ -2,6 +2,10 @@ use crate::input;
pub async fn run() {
tokio::spawn(async {
// give a bit of time for stdout
use tokio::time::{sleep, Duration};
sleep(Duration::from_millis(200)).await;
if let Err(e) = input::forward_requests_from_socket().await {
eprintln!("failed to forwards requests from socket: {e}");
std::process::exit(1);