Commit b1dc0234 authored by Igor Pecovnik's avatar Igor Pecovnik
Browse files

Fix DHCP / static handling

parent 4f6131bc
...@@ -94,11 +94,9 @@ function create_if_config() { ...@@ -94,11 +94,9 @@ function create_if_config() {
gateway=$(route -n | grep 'UG[ \t]' | awk '{print $2}' | sed -n '1p') gateway=$(route -n | grep 'UG[ \t]' | awk '{print $2}' | sed -n '1p')
echo -e "# armbian-config created" echo -e "# armbian-config created"
echo -e "source /etc/network/interfaces.d/*\n" echo -e "source /etc/network/interfaces.d/*\n"
echo -e "# Local loopback\nauto lo\niface lo init loopback\n" if [[ "$3" == "fixed" ]]; then
echo -e "# Interface $2\nallow-hotplug $2\nno-auto-down $2" echo -e "# Local loopback\nauto lo\niface lo init loopback\n"
if [[ "$3" != "fixed" ]]; then echo -e "# Interface $2\nallow-hotplug $2\nno-auto-down $2"
echo -e "iface $2 inet dhcp"
else
echo -e "iface $2 inet static\n\taddress $address\n\tnetmask $netmask\n\tgateway $gateway\n\tdns-nameservers 8.8.8.8" echo -e "iface $2 inet static\n\taddress $address\n\tnetmask $netmask\n\tgateway $gateway\n\tdns-nameservers 8.8.8.8"
fi fi
} # } #
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment