index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2022-02-13 04:12:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-13 10:12:38 +0100 |
commit | 30e518f324ee309d07a9f01131c4969a7208f4ae (patch) | |
tree | dd95c00500949d4aaf1cf03aac6447eb708d2e66 /archinstall/lib/menu/selection_menu.py | |
parent | fb72cc42044b32f237bdde256be2900228bfd367 (diff) |
-rw-r--r-- | archinstall/lib/menu/selection_menu.py | 5 |
diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py index 84bb8e2f..c5d63c2f 100644 --- a/archinstall/lib/menu/selection_menu.py +++ b/archinstall/lib/menu/selection_menu.py @@ -458,7 +458,10 @@ class GlobalMenu(GeneralMenu): lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)), default="systemd-bootctl" if has_uefi() else "grub-install") self._menu_options['hostname'] = \ - Selector(_('Specify hostname'), lambda: ask_hostname()) + Selector( + _('Specify hostname'), + lambda: ask_hostname(), + default='archlinux') self._menu_options['!root-password'] = \ Selector( _('Set root password'), |