Skip to content

Commit

Permalink
Release v2.0.3 (#56)
Browse files Browse the repository at this point in the history
* Release v2.0.3
  • Loading branch information
mwester117 authored Nov 21, 2024
1 parent f032aed commit a595419
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ plugins:
strategy: {}
test: {}
vars: {}
version: 2.0.2
version: 2.0.3
8 changes: 8 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion roles/install_agent/vars/main.yml
Original file line number Diff line number Diff line change
@@ -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 %}"
Expand Down

0 comments on commit a595419

Please sign in to comment.