From 229223a1cf56c7adbcc71663ed3ebe91fb7e6784 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 23 Feb 2005 13:41:22 +0000 Subject: handle wpa_supplicant files --- perl-install/network/network.pm | 66 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'perl-install/network/network.pm') diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index 73e451617..1f1e78a84 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -477,6 +477,72 @@ sub easy_dhcp { 1; } +sub wpa_supplicant_add_network { + my ($new_network) = @_; + my $wpa_supplicant_conf = "$::prefix/etc/wpa_supplicant.conf"; + my $s; + my %network; + foreach (cat_($wpa_supplicant_conf)) { + if (%network) { + #- in a "network = {}" block + if (/^\s*(\w+)\s*=\s*(.*?)(\s*#.*)?$/) { + push @{$network{entries}}, { key => $1, value => $2, comment => $3 }; + $1 eq 'ssid' and $network{ssid} = $2; + } elsif (/^·*\}/) { + #- end of network block, write it + $s .= "network = { $network{comment}\n"; + my $update = $network{ssid} eq $new_network->{ssid}; + foreach (@{$network{entries}}) { + my $key = $_->{key}; + if ($update) { + #- do not write entry if not provided in the new network + exists $new_network->{$key} or next; + #- update value from the new network + $_->{value} = delete $new_network->{$key}; + } + if ($key) { + $s .= " $key = $_->{value}$_->{comment}\n"; + } else { + $s .= " $_->{comment}\n"; + } + } + if ($update) { + while (my ($key, $value) = each(%$new_network)) { + $s .= " $key = $value\n"; + } + } + $s .= "}\n"; + undef %network; + $update and undef $new_network; + } else { + #- unrecognized, keep it anyway + push @{$network{entries}}, { comment => $_ }; + } + } else { + if (/^\s*network\s*=\s*\{(.*)/) { + #- beginning of a new network block + $network{comment} = $1; + } else { + #- keep other options, comments + $s .= $_; + } + } + } + if ($new_network) { + #- network wasn't found, write it + $s .= "\nnetwork = {\n"; + #- write ssid first + if (my $ssid = delete $new_network->{ssid}) { + $s .= " ssid = $ssid\n"; + } + while (my ($key, $value) = each(%$new_network)) { + $s .= " $key = $value\n"; + } + $s .= "}\n"; + } + output($wpa_supplicant_conf, $s); +} + #- configureNetwork2 : configure the network interfaces. #- input #- $prefix -- cgit v1.2.1