-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import from osism/testbed Related: osism/issues#1133 Signed-off-by: Sven Kieske <kieske@osism.tech>
- Loading branch information
1 parent
1d6ca0c
commit 518d111
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
ansible_core_version: "2.16.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
galaxy_info: | ||
author: Sven Kieske | ||
description: Role osism.validations.kernel_version | ||
company: OSISM GmbH | ||
license: Apache License 2.0 | ||
min_ansible_version: 2.16.0 | ||
platforms: | ||
- name: Ubuntu | ||
versions: | ||
- jammy | ||
- noble | ||
- name: Debian | ||
versions: | ||
- bookworm | ||
- name: EL | ||
versions: | ||
- "9" | ||
galaxy_tags: | ||
- osism | ||
- system | ||
dependencies: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
- name: "Fail if ansible-core version is lower than {{ ansible_core_version }}" | ||
ansible.builtin.fail: | ||
msg: "Ansible core version is {{ ansible_version.full }}, expected Ansible core version is {{ ansible_core_version }}." | ||
when: ansible_version.full is ansible.builtin.version(ansible_core_version, '<') |