diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-24 17:50:17 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-24 17:50:17 +0100 |
commit | e485c5d720388f0d2fffec5dede46c70d341e4f4 (patch) | |
tree | b9bb67e718d0df619428aebea8e6b3390e3afd84 | |
parent | 9062b23867e2968152883ed3f7d66ab2b1dd918c (diff) | |
download | itzks-install-script-e485c5d720388f0d2fffec5dede46c70d341e4f4.tar.gz itzks-install-script-e485c5d720388f0d2fffec5dede46c70d341e4f4.tar.bz2 itzks-install-script-e485c5d720388f0d2fffec5dede46c70d341e4f4.zip |
FIXME: WiFi configuration still for systemd-networkd, not for NetworkManager.
-rw-r--r-- | install-itzks-workstation | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index d60a73b..aed7502 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -64,9 +64,9 @@ esac # FIXME: this should be scripted; manage with puppet instead read -p '''! Änderung in Network-Interfaces Ändere die bestehenden Einträge für eth0 auf - allow-hotplug eth0 - #NetworkManager - #iface eth0 inet dhcp + + #NetworkManager iface eth0 inet dhcp + Starte nun den Editor mit [Enter] ''' editor /etc/network/interfaces @@ -95,6 +95,7 @@ editor /etc/default/nfs-common FOUND=`iwconfig | grep "IEE 802.11"` WIFIDEV=$(echo "$FOUND" | awk '{print $1}') +# FIXME: this works for systemd-networkd, but not for NetworkManager if [ -n "$FOUND" ]; then export WIFIDEV # Add system-wide WiFi-config |