Typo
buildbot/multibuild_parent Build done. Details
buildbot/travis_bionic Build done. Details
buildbot/job/openwrt Build done. Details

- this is self-explanatory, the typo prevented the script from running,
  this script is needed to reconfigure the default network system,
  basically swapping eth0 and eth1, so that eth0 is wan and eth1 is lan.
  This means that if there is only one ethernet interface, it doesn't
  assign it a fixed IP address and start responding to DHCP requests on
  it. It was broken for a long time but I didn't have time to investigate
  until now.
This commit is contained in:
Peter Šurda 2023-05-23 12:47:00 +08:00
parent 644618d9c4
commit ffc564720c
Signed by: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
VERSION=1
[ "$(uci -q get defaults.version.network)" -ge "$VERSION" ] & exit
[ "$(uci -q get defaults.version.network)" -ge "$VERSION" ] && exit
# save version
/sbin/uci set defaults.version.network="$VERSION"