File tree Expand file tree Collapse file tree 6 files changed +26
-3
lines changed
Expand file tree Collapse file tree 6 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,19 @@ Sva.Sentinelone Release Notes
44
55.. contents :: Topics
66
7+ v2.0.3
8+ ======
9+
10+ Release Summary
11+ ---------------
12+
13+ This is a bgfix release
14+
15+ Bugfixes
16+ --------
17+
18+ - install_agent role: Fixed a bug which broke OpenSUSE compatibility
19+
720v2.0.2
821======
922
Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ The module documentation can be found [here](https://svalabs.github.io/sva.senti
8383The role documentation can be found [here](https://svalabs.github.io/sva.sentinelone/branch/main/collections/index_role.html).
8484
8585# # Changelog
86+ **v2.0.3**: Bugfix release. Fixed OpenSUSE compatibility
87+
8688**v2.0.2**: Bugfix release. Fixed idempotency bug in install_agent role and reverted changes from v2.0.1
8789
8890**v2.0.1**: Bugfix release. Fixed a bug where the install_agent role fails on local tasks if "ansible_connection" var is set in playbook.
Original file line number Diff line number Diff line change @@ -69,4 +69,4 @@ plugins:
6969 strategy : {}
7070 test : {}
7171 vars : {}
72- version : 2.0.2
72+ version : 2.0.3
Original file line number Diff line number Diff line change @@ -138,3 +138,11 @@ releases:
138138 fragments :
139139 - v2.0.2.yml
140140 release_date : ' 2024-11-04'
141+ 2.0.3 :
142+ changes :
143+ bugfixes :
144+ - ' install_agent role: Fixed a bug which broke OpenSUSE compatibility'
145+ release_summary : This is a bgfix release
146+ fragments :
147+ - v2.0.3.yml
148+ release_date : ' 2024-11-21'
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace: "sva"
99name : " sentinelone"
1010
1111# The version of the collection. Must be compatible with semantic versioning
12- version : " 2.0.2 "
12+ version : " 2.0.3 "
1313
1414# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515readme : " README.md"
Original file line number Diff line number Diff line change 11---
22# vars file for install_agent
33pkg_format : " {% if ansible_facts.pkg_mgr in ['yum', 'dnf', 'zypper'] %}rpm{%
4- elif ansible_facts.pkg_mgr == 'apt' %}deb{%
4+ elif ansible_facts.pkg_mgr == 'apt' %}deb{%
55 elif ansible_facts.os_family == 'Windows' and not win_use_exe %}msi{%
66 elif ansible_facts.os_family == 'Windows' and win_use_exe %}exe{%
77 else %}unknown{% endif %}"
You can’t perform that action at this time.
0 commit comments