Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.0.3 #56

Merged
merged 2 commits into from
Nov 21, 2024
Merged
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
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
Loading