Fixed #48 - Removed AUR question in the guided installer. (library still supports it, but will be hidden from common users)
This commit is contained in:
parent
9b65bf4bbb
commit
eb4b0f09ef
|
|
@ -37,9 +37,6 @@ def perform_installation(device, boot_partition, language, mirrors):
|
||||||
if root_pw:
|
if root_pw:
|
||||||
installation.user_set_pw('root', root_pw)
|
installation.user_set_pw('root', root_pw)
|
||||||
|
|
||||||
if len(aur.strip()) and aur.strip().lower() != 'no':
|
|
||||||
installation.add_AUR_support()
|
|
||||||
|
|
||||||
# Unmount and close previous runs (in case the installer is restarted)
|
# Unmount and close previous runs (in case the installer is restarted)
|
||||||
archinstall.sys_command(f'umount -R /mnt', surpress_errors=True)
|
archinstall.sys_command(f'umount -R /mnt', surpress_errors=True)
|
||||||
archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', surpress_errors=True)
|
archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', surpress_errors=True)
|
||||||
|
|
@ -95,10 +92,6 @@ while 1:
|
||||||
users[new_user] = new_user_passwd
|
users[new_user] = new_user_passwd
|
||||||
break
|
break
|
||||||
|
|
||||||
aur = input('Would you like AUR support? (leave blank for no): ')
|
|
||||||
if len(aur.strip()) and aur.lower() != 'no':
|
|
||||||
archinstall.log(' - AUR support provided by yay (https://aur.archlinux.org/packages/yay/)', bg='black', fg='white')
|
|
||||||
|
|
||||||
profile = input('Any particular profile you want to install: ')
|
profile = input('Any particular profile you want to install: ')
|
||||||
packages = input('Additional packages aside from base (space separated): ').split(' ')
|
packages = input('Additional packages aside from base (space separated): ').split(' ')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue