From 83e7657c37de4647a8d3be21e445f2c895a5181a Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Wed, 10 Aug 2022 17:50:39 -0600 Subject: [PATCH] increase timeout for command submission --- functions/cmd_to_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/cmd_to_container.sh b/functions/cmd_to_container.sh index 2d011172..115ad619 100644 --- a/functions/cmd_to_container.sh +++ b/functions/cmd_to_container.sh @@ -89,7 +89,7 @@ do 1) clear -x title - read -rt 120 -p "What command do you want to run?: " command || { echo -e "\nFailed to make a selection in time" ; exit; } + read -rt 500 -p "What command do you want to run?: " command || { echo -e "\nFailed to make a selection in time" ; exit; } k3s crictl exec -it "$container_id" $command break ;;