index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Werner Llácer <wllacer@gmail.com> | 2022-03-28 13:55:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 13:55:15 +0200 |
commit | 4b4473632df0fbc92e85f6e32f6e940ad4fb6fa7 (patch) | |
tree | c7fff6b42db3c2cadb19051b14c566d40c5a93bf /examples/swiss.py | |
parent | 3dc0d957e838c34b48a0782d2540341e33b24070 (diff) |
-rw-r--r-- | examples/swiss.py | 6 |
diff --git a/examples/swiss.py b/examples/swiss.py index 6f524103..b94ddcce 100644 --- a/examples/swiss.py +++ b/examples/swiss.py @@ -215,7 +215,7 @@ class MyMenu(archinstall.GlobalMenu): if self._execution_mode in ('full','lineal'): options_list = ['keyboard-layout', 'mirror-region', 'harddrives', 'disk_layouts', '!encryption-password','swap', 'bootloader', 'hostname', '!root-password', - '!superusers', '!users', 'profile', 'audio', 'kernels', 'packages','nic', + '!superusers', '!users', 'profile', 'audio', 'kernels', 'packages','additional-repositories','nic', 'timezone', 'ntp'] if archinstall.arguments.get('advanced',False): options_list.extend(['sys-language','sys-encoding']) @@ -226,7 +226,7 @@ class MyMenu(archinstall.GlobalMenu): elif self._execution_mode == 'only_os': options_list = ['keyboard-layout', 'mirror-region','bootloader', 'hostname', '!root-password', '!superusers', '!users', 'profile', 'audio', 'kernels', - 'packages', 'nic', 'timezone', 'ntp'] + 'packages', 'additional-repositories', 'nic', 'timezone', 'ntp'] mandatory_list = ['hostname'] if archinstall.arguments.get('advanced',False): options_list.expand(['sys-language','sys-encoding']) @@ -236,7 +236,7 @@ class MyMenu(archinstall.GlobalMenu): archinstall.log(f"self._execution_mode {self._execution_mode} not supported") exit(1) if self._execution_mode != 'lineal': - options_list.extend(['install','abort']) + options_list.extend(['save_config','install','abort']) if not archinstall.arguments.get('advanced'): options_list.append('archinstall-language') |