Skip to content

Commit

Permalink
Merge pull request #87 from openNDS/v4.1.01
Browse files Browse the repository at this point in the history
V4.1.01
  • Loading branch information
bluewavenet authored Jul 31, 2024
2 parents ca14bbb + ab29ab2 commit 0aa4bcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
mesh11sd (4.1.1)
* Fix - hardcoded mesh bridge name causing multiple instances of odhcp6c in non-cpe peer mode [bluewavenet]

-- Rob White <[email protected]> Wed, 31 July 2024 07:10:52 +0000

mesh11sd (4.1.0)
* Add - cli option dhcp4_renew [bluewavenet]
* Add - default owe transition mode [bluewavenet]
Expand Down
4 changes: 2 additions & 2 deletions src/mesh11sd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# mesh11sd daemon
#
version="4.1.1beta"
version="4.1.1"
fixup1=0
ip4pingfailcount=0
network_restart=0
Expand Down Expand Up @@ -828,7 +828,7 @@ check_channel() {
link_to_portal=$(cat $tmpdir/dhcp6probe | grep -q -w "Got a valid ADVERTISE" ; echo -n "$?")

# NOTE: odhcp6c -p option does not work and pid is not recorded, so we have to look up the pid using ps utility
instances=$(ps | grep "odhcp6c" | grep "/var/run/odhcp6c-renew-br-wan.pid" | awk '{printf "%s ", $1}')
instances=$(ps | grep "odhcp6c" | grep "/var/run/odhcp6c-renew-$device.pid" | awk '{printf "%s ", $1}')

for instance in $instances; do
kill "$instance"
Expand Down

0 comments on commit 0aa4bcd

Please sign in to comment.