Skip to content

Commit b626607

Browse files
committed
RDKB-61523: ccsp-adv-security Merge branch 'release/1.1.0'
2 parents e1473d2 + d96a668 commit b626607

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.1.0](https://github.com/rdkcentral/advanced-security/compare/1.0.1...1.1.0)
8+
9+
- RDKB-61491 : Fix advsec script decrement logic [`#21`](https://github.com/rdkcentral/advanced-security/pull/21)
10+
- Updating Changelog.md [`#19`](https://github.com/rdkcentral/advanced-security/pull/19)
11+
- Fix advsec script decrement logic [`e2f1604`](https://github.com/rdkcentral/advanced-security/commit/e2f160497d7b0dd9b48969a870624f367578c5d6)
12+
713
#### [1.0.1](https://github.com/rdkcentral/advanced-security/compare/1.0.0...1.0.1)
814

15+
> 22 August 2025
16+
917
- SHARMAN-3637 :Levl RFC is not enabled after Factory Reset. [`#12`](https://github.com/rdkcentral/advanced-security/pull/12)
1018
- RDKB-60898 : Avoid cujo-agent internal API usage [`#15`](https://github.com/rdkcentral/advanced-security/pull/15)
1119
- Update run_ut.sh [`#10`](https://github.com/rdkcentral/advanced-security/pull/10)
@@ -16,6 +24,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
1624
- Create cla.yml [`#3`](https://github.com/rdkcentral/advanced-security/pull/3)
1725
- Create fossid_integration_stateless_diffscan_target_repo.yml [`#2`](https://github.com/rdkcentral/advanced-security/pull/2)
1826
- Create CODEOWNERS file [`#1`](https://github.com/rdkcentral/advanced-security/pull/1)
27+
- updating the changelog.md file [`c155519`](https://github.com/rdkcentral/advanced-security/commit/c1555192bbe6c2e48ac278a70b3e2a3137cd5a38)
1928
- Test unit test workflow [`5eb4175`](https://github.com/rdkcentral/advanced-security/commit/5eb417595ba128df4f16e90d7f4251c5bd98c0c9)
2029
- Update L1-tests.yml [`cdd2540`](https://github.com/rdkcentral/advanced-security/commit/cdd254086c26fd8529e10e694d3713c07ce96415)
2130

scripts/start_adv_security.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,13 +311,13 @@ stop_agent_services()
311311
break
312312
fi
313313
sleep 1
314-
retries=$((retries--))
314+
((retries--))
315315
raptr clear
316316
done
317317
else
318318
RETRY_CNT=5
319319
while [ ${RETRY_CNT} -gt 0 ]; do
320-
RETRY_CNT=$(expr $RETRY_CNT - 1)
320+
((RETRY_CNT--))
321321
echo_t "${CUJO_AGENT_LOG} triggering firewall restart..." >> ${ADVSEC_AGENT_LOG_PATH}
322322
sysevent set firewall-restart
323323
sleep 10s
@@ -701,7 +701,7 @@ do_firewall_restart()
701701
break
702702
else
703703
usleep 100000
704-
fw_retries=$((fw_retries--))
704+
((fw_retries--))
705705
fi
706706
done
707707

@@ -712,7 +712,7 @@ do_firewall_restart()
712712
break
713713
else
714714
usleep 100000
715-
fw_retries=$((fw_retries--))
715+
((fw_retries--))
716716
fi
717717
done
718718
if [ "${fw_stat}" = "started" ]; then

0 commit comments

Comments
 (0)