summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_steps_interactive.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 356cbe67e..919b9bf65 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -844,6 +844,7 @@ sub addUser {
my $v;
my $p = $o->{prefix};
substInFile { /^admin:/ and $_=''; } "$p/etc/passwd";
+ substInFile { /^admin:/ and $_=''; } "$p/etc/group";
$v->{shell} ||= "/bin/bash";
$o->ask_from_entries_refH([_("Set admin password"), _("Ok"), $o->{security} > 2 || $::corporate ? () : _("No password")],
[ _("Set admin password"), "\n" ], [
@@ -1136,7 +1137,7 @@ Do you really want to quit now?"), 0);
For further configuration after installation, use a browser
from any computer connected to your LAN, and connect on :
-https://" . $o->{intf}{eth0}->{BOOTPROTO} eq 'static' ? $o->{intf}{eth0}->{IPADDR} : $o->{netc}{HOSTNAME} . ":8443/
+https://") . ($o->{intf}{eth0}->{BOOTPROTO} eq 'static' ? $o->{intf}{eth0}->{IPADDR} : $o->{netc}{HOSTNAME} ) . _(":8443/
Log on with your admin account"));
}