Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rdk/ipv6addressChange.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if [ "x$cmd" == "xadd" ] && [ "x$flags" == "xglobal" ]; then
if [ ! -f /tmp/estb_ipv4 ] && [ ! -f /tmp/estb_ipv6 ];
then
if [ -f "$LOGMILESTONE_BIN" ]; then
$LOGMILESTONE_BIN "IP_ACQUISTION_COMPLETED:$ifc"
#$LOGMILESTONE_BIN "IP_ACQUISTION_COMPLETED:$ifc"
if [ $ifc == "eth0" ]; then
ifc_uptime=$(awk '{printf "%.0f", $1 * 1000}' /proc/uptime)
t2ValNotify "btime_ipacqEth_split" "$ifc_uptime"
Expand Down
6 changes: 3 additions & 3 deletions lib/rdk/xconfImageCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,9 @@ sendTLSCodebigRequest()

if [ "$1" == "XCONF" ]; then
echo "Attempting $TLS connection to Codebig XCONF server"
if [ -f $LOGMILESTONE_BIN ];then
$LOGMILESTONE_BIN "CONNECT_TO_XCONF_CDL"
fi
# if [ -f $LOGMILESTONE_BIN ];then
# $LOGMILESTONE_BIN "CONNECT_TO_XCONF_CDL"
# fi
Comment on lines +383 to +385
if [ -f $EnableOCSPStapling ] || [ -f $EnableOCSP ]; then
CURL_CMD="curl $TLS --cert-status --connect-timeout $CURL_TLS_TIMEOUT -w '%{http_code}\n' -o \"$FILENAME\" \"$CB_SIGNED_REQUEST\" -m 10"
else
Expand Down
2 changes: 1 addition & 1 deletion systemd_units/log-rdk-start.service
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ DefaultDependencies=no
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/rdkLogMileStone "RDK_STARTED"
#ExecStart=/usr/bin/rdkLogMileStone "RDK_STARTED"

[Install]
WantedBy=local-fs.target
Expand Down
3 changes: 2 additions & 1 deletion systemd_units/notify-network-ready.service
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ After=dbus.service
[Service]
Type=oneshot
ExecStartPre=/bin/touch /tmp/connectivity_check_done
ExecStart=/lib/rdk/logMilestone.sh "INTERNET_FULLY_CONNECTED"
#ExecStart=/lib/rdk/logMilestone.sh "INTERNET_FULLY_CONNECTED"
ExecStart=/bin/true
2 changes: 1 addition & 1 deletion systemd_units/ntp-event.service
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ ConditionPathExists=/tmp/clock-event
Type=oneshot
Environment="EVENT_NAME=NTPReceivedEvent"
Environment="EVENT_VALUE=1"
ExecStartPre= /bin/sh -c 'if [ ! -f /tmp/stt_received ];then /bin/touch /tmp/stt_received; if [ -f /usr/bin/rdkLogMileStone ];then /usr/bin/rdkLogMileStone "CONNECT_TO_NTP_SERVER"; fi; fi'
ExecStartPre= /bin/sh -c 'if [ ! -f /tmp/stt_received ];then /bin/touch /tmp/stt_received; fi'
ExecStart=/usr/bin/IARM_event_sender $EVENT_NAME $EVENT_VALUE
Loading