From c718bca80d5fe059b98a223c12df95fb60f12a57 Mon Sep 17 00:00:00 2001 From: Ilya Mashchenko <ilya@netdata.cloud> Date: Thu, 13 Mar 2025 22:50:26 +0200 Subject: [PATCH] netdata-uninstaller: improve input prompt with more descriptive guidance (#19855) --- packaging/installer/netdata-uninstaller.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/installer/netdata-uninstaller.sh b/packaging/installer/netdata-uninstaller.sh index dbab51f96d..43ffb7406f 100755 --- a/packaging/installer/netdata-uninstaller.sh +++ b/packaging/installer/netdata-uninstaller.sh @@ -115,7 +115,7 @@ user_input() { case "$yn" in [Yy]*) return 0;; [Nn]*) return 1;; - *) echo "Please answer yes or no.";; + *) echo "Please answer y[es] or n[o]";; esac done fi