Skip to content

Commit

Permalink
Added install dhcpcd of before enabling and removed archstrike-testin…
Browse files Browse the repository at this point in the history
…g to reflect deprecation
  • Loading branch information
comrumino committed Dec 20, 2019
1 parent d7e5807 commit d6b899a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions asinstaller/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ def internet():
'yes'):
system("pacman -S iw wpa_supplicant dialog netctl --noconfirm", True)

if query_yes_no("> Would you like to enable DHCP?", 'yes'):
if query_yes_no("> Would you like DHCP enabled on your new install?", 'yes'):
system("pacman -S dhcpcd --noconfirm", True)
system("systemctl enable dhcpcd", True)


Expand Down Expand Up @@ -293,11 +294,6 @@ def archstrike():
+ "Include = /etc/pacman.d/archstrike-mirrorlist|' "
+ "/mnt{0}".format(pacmanconf))

if query_yes_no("> Do you want to add archstrike-testing as well?", 'yes'):
system("echo '[archstrike-testing]' >> /mnt{0}".format(pacmanconf))
system("echo 'Include = /etc/pacman.d/archstrike-mirrorlist' >> "
+ "/mnt{0}".format(pacmanconf))

print_info("Performing database update once more to test mirrorlist")
system("pacman -Syy", True)
if query_yes_no('> Do you want to go ahead and install all ArchStrike '
Expand Down

0 comments on commit d6b899a

Please sign in to comment.