We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fead187 commit cf6ddffCopy full SHA for cf6ddff
install.sh
@@ -86,8 +86,8 @@ setup_bridge() {
86
87
interface=$(find /sys/class/net -type l -not -lname '*virtual*' -printf '%f\n' | sort | head -1)
88
gateway=$(ip route show 0.0.0.0/0 dev $interface | cut -d ' ' -f 3)
89
- hostipandsub=$(ip -4 -br addr show ens192 | awk '{ print $3; }' )
90
- info "Setting up bridge on $interface which has IP $hostip and gateway $gateway"
+ hostipandsub=$(ip -4 -br addr show $interface | awk '{ print $3; }' )
+ info "Setting up bridge on $interface which has IP $hostipandsub and gateway $gateway"
91
92
cat << EOF > /etc/netplan/01-netcfg.yaml
93
network:
0 commit comments