fixed remaining file copys
This commit is contained in:
parent
7e0b10bc71
commit
43585a5bb9
1 changed files with 4 additions and 4 deletions
8
base.sh
8
base.sh
|
@ -121,17 +121,17 @@ if [[ $configuration == 1 ]]; then
|
||||||
systemctl enable sshd
|
systemctl enable sshd
|
||||||
# Netzwerk
|
# Netzwerk
|
||||||
# Ethernet
|
# 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/
|
cp ./configs/20-ethernet.network /etc/systemd/network/
|
||||||
# Wlan
|
# 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/
|
cp $wlan_network /etc/systemd/network/
|
||||||
# Wwan (Mobilefunk)
|
# 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/
|
cp $wwan_network /etc/systemd/network/
|
||||||
elif [[ $configuration == 2 ]]; then
|
elif [[ $configuration == 2 ]]; then
|
||||||
systemctl enable NetworkManager
|
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/
|
cp $wifi_backend_conf /etc/NetworkManager/conf.d/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue