Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDKTV-24917,RDKTV-22355,RDKTV-24153 : gdial Crash issue #90

Open
wants to merge 1 commit into
base: 23Q3_sprint
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/plat/scripts/restartXdial_onAddressChange.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ if [ "$1" == "add" ] && [ "$2" == "ipv4" ] && [ "$3" == "$XDIAL_IFNAME" ];then
fi
echo "file count for ls /tmp/XDIAL_* : $file_count \n " >> $LOG_FILE
if [ $file_count -gt 0 ]; then
if [ $4 != "192.168.28.10" ] && [ $4 != "192.168.18.10" ] && [ $4 != "192.0.2.11" ] && [ $4 != "192.0.2.10" ]; then
if [ $4 != "192.168.28.10" ] && [ $4 != "192.168.18.10" ] && [ $4 != "192.0.2.11" ] && [ $4 != "192.0.2.10" ] && [$4 != "10.0.0.3"]; then
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

10.0.0.3 is valid ip why you have added to not reboot

printf "IP change to new valid ip: $4 proceed with restart " >> $LOG_FILE
restartXdialService &
else
Expand Down