Rollback patch wpa_supplicant

This commit is contained in:
Bill Zimmerman 2019-12-19 13:21:21 -08:00
parent 32d398f07d
commit 75451fb25f
1 changed files with 0 additions and 20 deletions

View File

@ -209,11 +209,6 @@ function check_for_old_configs() {
sudo cp /etc/rc.local "$raspap_dir/backups/rc.local.`date +%F-%R`"
sudo ln -sf "$raspap_dir/backups/rc.local.`date +%F-%R`" "$raspap_dir/backups/rc.local"
fi
if [ -f /etc/wpa_supplicant/wpa_supplicant.conf ]; then
sudo cp /etc/wpa_supplicant/wpa_supplicant.conf "$raspap_dir/backups/wpa_supplicant.conf.`date +%F-%R`"
sudo ln -sf "$raspap_dir/backups/wpa_supplicant.conf.`date +%F-%R`" "$raspap_dir/backups/wpa_supplicant.conf"
fi
}
# Move configuration file to the correct location
@ -354,21 +349,6 @@ function patch_system_files() {
sudo ln -s /usr/share/dhcpcd/hooks/10-wpa_supplicant /etc/dhcp/dhclient-enter-hooks.d/
fi
# Add ctrl_interface and group to wpa_supplicant, create if absent
install_log "Patching wpa_supplicant.conf"
line="ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev"
if [ ! -f /etc/wpa_supplicant/wpa_supplicant.conf ]; then
echo "Creating wpa_supplicant.conf"
sudo touch /etc/wpa_supplicant/wpa_supplicant.conf || install_error "Unable to create wpa_supplicant.conf"
echo $line | sudo tee /etc/wpa_supplicant/wpa_supplicant.conf || install_error "Unable to write to wpa_supplicant.conf"
fi
if grep "$line" /etc/wpa_supplicant/wpa_supplicant.conf > /dev/null; then
echo "ctrl_interface is OK"
else
sudo sed -i "1 i\$line" /etc/wpa_supplicant/wpa_supplicant.conf || install_error "Unable to write to wpa_supplicant.conf"
echo "Adding line $line"
fi
# Unmask and enable hostapd.service
install_log "Unmasking and enabling hostapd service"
sudo systemctl unmask hostapd.service