Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-07 15:45:42 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-07 15:45:42 +0200
commiteb4b0f09efb066974f23a5c702c9ed461f329604 (patch)
tree901f1a27afb016e81d24015029165781e87f88a7 /examples/guided.py
parent9b65bf4bbb2f92a75905bc02f9a73d2dac5b7d89 (diff)
Fixed #48 - Removed AUR question in the guided installer. (library still supports it, but will be hidden from common users)
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 7d7d6e8d..7ecd070d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -37,9 +37,6 @@ def perform_installation(device, boot_partition, language, mirrors):
if 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)
archinstall.sys_command(f'umount -R /mnt', 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
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: ')
packages = input('Additional packages aside from base (space separated): ').split(' ')