Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2022-02-13 04:12:38 -0500
committerGitHub <noreply@github.com>2022-02-13 10:12:38 +0100
commit30e518f324ee309d07a9f01131c4969a7208f4ae (patch)
treedd95c00500949d4aaf1cf03aac6447eb708d2e66
parentfb72cc42044b32f237bdde256be2900228bfd367 (diff)
Use archlinux as the default hostname (#979)
-rw-r--r--archinstall/lib/menu/selection_menu.py5
1 files changed, 4 insertions, 1 deletions
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'),