Skip to content

Commit 5ff3c13

Browse files
committed
Ansible 7 (2.14) is new minimal version in ansible-oracle 4.x
1 parent d676072 commit 5ff3c13

File tree

79 files changed

+89
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+89
-87
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
breaking_changes:
3+
- "Ansible 7 (2.14) is new minimal version in ansible-oracle 4.x ()"

docker/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ services:
66
dockerfile: Dockerfile
77
args:
88
ansible_lint_version: 6.6.1
9-
ansible_version: 5.8.0
9+
ansible_version: 7.0.0
1010
# ansible_version: 2.9.26
1111
# container_name: ansible-oracle-2.9.26
1212
# image: ansible:2.9.26
13-
container_name: ansible-oracle-2.12.6
14-
image: ansible:2.12.6
13+
container_name: ansible-oracle
14+
image: willhallonline/ansible:2.15-alpine-3.16
1515
hostname: ansible-oracle
1616
mem_limit: 1000m
1717
privileged: true

example/beginner/ansible/ansible.cfg

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[defaults]
22

3-
# following entries are only needed when working with ansible < 2.9
4-
# roles_path = ${PWD}/../ansible-oracle/roles/
5-
# library = ${PWD}/../ansible-oracle/library/, ${PWD}/../ansible-oracle/plugins/modules
6-
73
host_key_checking = False
84
display_skipped_hosts = false
95
duplicate_dict_key = ignore

example/beginner_patching/ansible/ansible.cfg

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[defaults]
22

3-
# following entries are only needed when working with ansible < 2.9
4-
# roles_path = ${PWD}/../ansible-oracle/roles/
5-
# library = ${PWD}/../ansible-oracle/library/, ${PWD}/../ansible-oracle/plugins/modules
6-
73
host_key_checking = False
84
display_skipped_hosts = false
95
duplicate_dict_key = ignore

galaxy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace: opitzconsulting
33
name: ansible_oracle
44
description: "Impoartant! This is a beta release! This is the collection of ansible-oracle from https://github.com/oravirt/ansible-oracle"
5-
version: 4.1.0
5+
version: 4.2.0
66
repository: https://github.com/oravirt/ansible-oracle.git
77
readme: README.md
88
authors:
@@ -16,5 +16,5 @@ tags:
1616
- infrastructure
1717
- oracle
1818
dependencies:
19-
community.general: '>=3.8.0,<7.0.0'
19+
community.general: '>=7.0.0'
2020
devsec.hardening: 8.6.0

meta/runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
requires_ansible: '>=2.9.10'
2+
requires_ansible: '>=2.14.0'

roles/common/README.md

Lines changed: 1 addition & 1 deletion

roles/common/meta/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ galaxy_info:
1010
company: Mikael Sandström
1111
license: license (MIT)
1212

13-
min_ansible_version: 2.9.0
13+
min_ansible_version: 2.14.0
1414

1515
platforms:
1616
- name: EL

roles/common/tasks/assert.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
---
2+
- name: OS + Distribution
3+
ansible.builtin.debug:
4+
msg: "{{ ansible_os_family }} {{ ansible_distribution_major_version }} ({{ ansible_distribution }})"
5+
26
- name: Assert Distribution
37
ansible.builtin.assert:
48
quiet: true

0 commit comments

Comments
 (0)