diff --git a/base.sh b/base.sh index 11401d3..09b7190 100644 --- a/base.sh +++ b/base.sh @@ -121,17 +121,17 @@ if [[ $configuration == 1 ]]; then systemctl enable sshd # Netzwerk # Ethernet - $ethernet_network=$(find / -type f -name 20-ethernet.network | grep configs) + ethernet_network=$(find / -type f -name 20-ethernet.network | grep configs) cp ./configs/20-ethernet.network /etc/systemd/network/ # Wlan - $wlan_network=$(find / -type f -name 20-wlan.network | grep configs) + wlan_network=$(find / -type f -name 20-wlan.network | grep configs) cp $wlan_network /etc/systemd/network/ # Wwan (Mobilefunk) - $wwan_network=$(find / -type f -name 20-wwan.network | grep configs) + wwan_network=$(find / -type f -name 20-wwan.network | grep configs) cp $wwan_network /etc/systemd/network/ elif [[ $configuration == 2 ]]; then systemctl enable NetworkManager - $wifi_backend_conf=$(find / -type f -name wifi_backend.conf | grep configs) + wifi_backend_conf=$(find / -type f -name wifi_backend.conf | grep configs) cp $wifi_backend_conf /etc/NetworkManager/conf.d/ fi