From 9e6fbb5a5163293c67d8355df78564eac45e9453 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 5 Feb 2025 10:58:36 +0100 Subject: [PATCH] homectl: clarify that we pick the default shell if the prompt is skipped --- src/home/homectl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/home/homectl.c b/src/home/homectl.c index 04457ebeda..ad372c8420 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -2640,13 +2640,13 @@ static int create_interactively(void) { shell = mfree(shell); r = ask_string(&shell, - "%s Please enter the shell to use for user %s (empty to skip): ", + "%s Please enter the shell to use for user %s (empty for default): ", special_glyph(SPECIAL_GLYPH_TRIANGULAR_BULLET), username); if (r < 0) return log_error_errno(r, "Failed to query user for username: %m"); if (isempty(shell)) { - log_info("No data entered, skipping."); + log_info("No data entered, leaving at default."); break; }