From a3f44847efb0db53957b9bc983d849e6afdf778f Mon Sep 17 00:00:00 2001 From: stilez Date: Wed, 18 Jul 2018 11:38:30 +0100 Subject: [PATCH] Clarify install media login message/options (#2557) --- src/etc/rc.subr.d/livemode | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/etc/rc.subr.d/livemode b/src/etc/rc.subr.d/livemode index 0791e48ec..0eee17ec7 100755 --- a/src/etc/rc.subr.d/livemode +++ b/src/etc/rc.subr.d/livemode @@ -58,12 +58,12 @@ if (is_install_media()) { echo "\n"; - $greeting = "Welcome! Both `root' and `installer' users are available for system\n"; - $greeting .= "setup or invoking the installer, respectively. The predefined root\n"; - $greeting .= "password works for both accounts."; + $greeting = "Welcome! OPNsense is running in live mode from install media.\n" . + "Please login as 'root' to continue in live mode, or as 'installer' to install OPNsense.\n" . + "Use the default or previously-imported root password for both accounts."; if (!isset($config['system']['ssh']['noauto']) && is_process_running('sshd')) { - $greeting .= " Remote login via SSH is possible."; + $greeting .= " Remote login via SSH is also enabled."; } echo $greeting . "\n";