From 717e6b0f89944669db8ffdc5de6b056520d3c6a0 Mon Sep 17 00:00:00 2001 From: Nikolay Edigaryev Date: Fri, 21 Oct 2022 19:09:18 +0400 Subject: [PATCH] Increase the default bootpd(8) lease time from 1 to 10 minutes (#8) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index dce5c67..61d12d4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ struct Args { #[clap( long, help = "set bootpd(8) lease time to this value (in seconds) before starting the VM", - default_value_t = 60 + default_value_t = 600 )] bootpd_lease_time: u32,