From fdc664a318e2b8e24ed197b70ba7c4471f9ec4f4 Mon Sep 17 00:00:00 2001 From: Badlop Date: Wed, 22 Dec 2021 13:52:13 +0100 Subject: [PATCH] The read value is useless, so use throwaway variable name --- ejabberdctl.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ejabberdctl.template b/ejabberdctl.template index c80d33da5..cd2cc3c3e 100755 --- a/ejabberdctl.template +++ b/ejabberdctl.template @@ -146,7 +146,7 @@ debugwarning() echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:" echo " EJABBERD_BYPASS_WARNINGS=true" echo "Press return to continue" - read -r input + read -r _ echo "" fi } @@ -169,7 +169,7 @@ livewarning() echo "To bypass permanently this warning, add to ejabberdctl.cfg the line:" echo " EJABBERD_BYPASS_WARNINGS=true" echo "Press return to continue" - read -r input + read -r _ echo "" fi }