Use archlinux as the default hostname (#979)
This commit is contained in:
parent
fb72cc4204
commit
30e518f324
|
|
@ -458,7 +458,10 @@ class GlobalMenu(GeneralMenu):
|
||||||
lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)),
|
lambda: ask_for_bootloader(storage['arguments'].get('advanced', False)),
|
||||||
default="systemd-bootctl" if has_uefi() else "grub-install")
|
default="systemd-bootctl" if has_uefi() else "grub-install")
|
||||||
self._menu_options['hostname'] = \
|
self._menu_options['hostname'] = \
|
||||||
Selector(_('Specify hostname'), lambda: ask_hostname())
|
Selector(
|
||||||
|
_('Specify hostname'),
|
||||||
|
lambda: ask_hostname(),
|
||||||
|
default='archlinux')
|
||||||
self._menu_options['!root-password'] = \
|
self._menu_options['!root-password'] = \
|
||||||
Selector(
|
Selector(
|
||||||
_('Set root password'),
|
_('Set root password'),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue