diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-17 23:35:12 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-17 23:35:12 -0600 |
| commit | 651c32d93180d66836ace97aa18b51e1fbb83bd1 (patch) | |
| tree | 6f516661c2dc51f76f36ad1a21dd7ac7b4fb38c2 /custom/install-archzfs | |
| parent | 2ebd6f7d76feed9d83a743b168fd148fe0eb8496 (diff) | |
| download | archangel-651c32d93180d66836ace97aa18b51e1fbb83bd1.tar.gz archangel-651c32d93180d66836ace97aa18b51e1fbb83bd1.zip | |
Default WiFi configuration to yes
Diffstat (limited to 'custom/install-archzfs')
| -rwxr-xr-x | custom/install-archzfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/install-archzfs b/custom/install-archzfs index 733660b..79ee0ff 100755 --- a/custom/install-archzfs +++ b/custom/install-archzfs @@ -271,10 +271,10 @@ get_raid_level() { get_wifi() { step "WiFi Configuration (Optional)" echo "" - prompt "Do you want to configure WiFi? [y/N]:" + prompt "Do you want to configure WiFi? [Y/n]:" read -p "> " configure_wifi - if [[ "$configure_wifi" =~ ^[Yy]$ ]]; then + if [[ ! "$configure_wifi" =~ ^[Nn]$ ]]; then # Ensure NetworkManager is running systemctl start NetworkManager 2>/dev/null || true sleep 2 |
