diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fb9c6d7..d214744 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ Sva.Sentinelone Release Notes .. contents:: Topics +v2.0.3 +====== + +Release Summary +--------------- + +This is a bgfix release + +Bugfixes +-------- + +- install_agent role: Fixed a bug which broke OpenSUSE compatibility + v2.0.2 ====== diff --git a/README.md b/README.md index c9e6f11..bad22ba 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,8 @@ The module documentation can be found [here](https://svalabs.github.io/sva.senti The role documentation can be found [here](https://svalabs.github.io/sva.sentinelone/branch/main/collections/index_role.html). ## Changelog +**v2.0.3**: Bugfix release. Fixed OpenSUSE compatibility + **v2.0.2**: Bugfix release. Fixed idempotency bug in install_agent role and reverted changes from v2.0.1 **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. diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 816c902..68e48b0 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -69,4 +69,4 @@ plugins: strategy: {} test: {} vars: {} -version: 2.0.2 +version: 2.0.3 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9e21a42..0d1f232 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -138,3 +138,11 @@ releases: fragments: - v2.0.2.yml release_date: '2024-11-04' + 2.0.3: + changes: + bugfixes: + - 'install_agent role: Fixed a bug which broke OpenSUSE compatibility' + release_summary: This is a bgfix release + fragments: + - v2.0.3.yml + release_date: '2024-11-21' diff --git a/galaxy.yml b/galaxy.yml index 558a76a..c33406c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: "sva" name: "sentinelone" # The version of the collection. Must be compatible with semantic versioning -version: "2.0.2" +version: "2.0.3" # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: "README.md" diff --git a/roles/install_agent/vars/main.yml b/roles/install_agent/vars/main.yml index b3e6cbb..b73ff5c 100644 --- a/roles/install_agent/vars/main.yml +++ b/roles/install_agent/vars/main.yml @@ -1,7 +1,7 @@ --- # vars file for install_agent pkg_format: "{% if ansible_facts.pkg_mgr in ['yum', 'dnf', 'zypper'] %}rpm{% - elif ansible_facts.pkg_mgr == 'apt' %}deb{% + elif ansible_facts.pkg_mgr == 'apt' %}deb{% elif ansible_facts.os_family == 'Windows' and not win_use_exe %}msi{% elif ansible_facts.os_family == 'Windows' and win_use_exe %}exe{% else %}unknown{% endif %}"