Skip to content

Commit a638b38

Browse files
committed
End of Life for Oracle Linux 7 and RHEL7
The support for OL/RHEL7 will be stopped, because EPEL archived all RPMs on their official repositories. No more bugfixes or security updates for RPMs anymore. `ansible-oracle` depends on some RPMs from that repository. The maintenance support for RHEL7 has been ended on 30 June 2024. The Premiere Support for OL7 will end 31 Decembre 2024. The code from `ansible-oracle` may work with OL/RHEL7 but all tests won't be done against this OS anymore.
1 parent db6998e commit a638b38

File tree

9 files changed

+15
-23
lines changed

9 files changed

+15
-23
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ Read link:doc/featurelist.adoc[here] for a detailed list of features of `ansible
2727

2828

2929
## Pre-requisites
30-
* Ansible Version >= 2.9. (Version 2.12 or newer of Ansible is recommended)
31-
* Oracle Linux (or any RHEL-based Linux System) >= 7
30+
* Ansible Version >= 2.14.
31+
* Oracle Linux (or any RHEL-based Linux System) >= 8
3232
* Oracle Database/Grid Infrastructure 21.3.0.0, 19.3.0.0

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
# ansible-oracle
22

3-
4-
_IMPORTANT_
5-
6-
*This an a beta release of `ansible-oracle`.* Use Version 3.x for production instead of this version.
7-
8-
93
* Automated installation of
104
* Oracle RAC databases
115
* RAC One Node database and
@@ -15,15 +9,18 @@ _IMPORTANT_
159
# Documentation
1610

1711
## Features
12+
1813
1. Full list of features of ansible-oracle <https://github.com/oravirt/ansible-oracle/blob/master/doc/featurelist.adoc>
1914
1. More details <https://github.com/oravirt/ansible-oracle>
2015

2116

2217
## Getting Started
18+
2319
1. Vagrant setup on Windows <https://github.com/oravirt/ansible-oracle/blob/master/doc/vagrant.adoc>
2420
1. Beginner <https://github.com/oravirt/ansible-oracle/blob/master/doc/guides/beginner.adoc>
2521

2622
### Next Steps
23+
2724
1. Read the full documentation <https://github.com/oravirt/ansible-oracle/tree/master/doc>
2825
1. How to develop in ansible-oracle <https://github.com/oravirt/ansible-oracle/blob/master/doc/development.adoc>
2926
1. List of roles in ansible-oracle <https://github.com/oravirt/ansible-oracle/blob/master/doc/roles.adoc>
@@ -34,5 +31,5 @@ _IMPORTANT_
3431
* Ansible Version >= 2.14
3532

3633
Version 2.14 or newer of Ansible is recommended
37-
* Oracle Linux (or any RHEL-based Linux System) >= 7
34+
* Oracle Linux (or any RHEL-based Linux System) >= 8
3835
* Oracle Database/Grid Infrastructure 21.3.0.0, 19.3.0.0

changelogs/fragments/rhel_ol7.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
deprecated_features:
3+
- "End of Life for Oracle Linux 7 and RHEL7 ()"

doc/featurelist.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ See documentation from Oracle for differences between Enterprise and Standard Ed
3333
|OracleLinux +
3434
Redhat Enterprise Linux
3535
|6 <<table1footnote,^[1]^>> +
36-
7 +
36+
7 <<table1footnote,^[1]^>> +
3737
8 +
3838
9 (experimental!) <<table1footnote,^[5]^>>
3939

example/beginner/vagrant/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
2929

3030
config.vm.disk :disk, size: "150GB", name: "#{vm_name}_oracle"
3131

32-
config.vm.box = "Rendanic/oraclelinux-7.x"
32+
config.vm.box = "Rendanic/oraclelinux-8.x"
3333
config.vm.box_check_update = false
3434

3535
config.vm.network :private_network, ip: lanip

example/rac/vagrant/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4646

4747
# Every Vagrant virtual environment requires a box to build off of.
4848
config.ssh.insert_key = false
49-
config.vm.box = "Rendanic/oraclelinux-7.x"
49+
config.vm.box = "Rendanic/oraclelinux-8.x"
5050

5151
(1..num_DB_INSTANCES).each do |i|
5252
# this is to start machines higher to lower

extensions/molecule/default/molecule.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ dependency:
66
driver:
77
name: docker
88
platforms:
9-
- name: ol7
10-
image: "quay.io/rendanic/docker-ol7-ansible:latest"
11-
pre_build_image: true
12-
# The following 4 lines are needed only for making systemd work
13-
command: ${MOLECULE_DOCKER_COMMAND:-""}
14-
volumes:
15-
- /sys/fs/cgroup:/sys/fs/cgroup:rw
16-
cgroupns_mode: host
17-
privileged: true
189
- name: ol8
1910
image: "quay.io/rendanic/docker-ol8-ansible:latest"
2011
pre_build_image: true

roles/common/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,8 @@ Url for epel-release-latest-7.noarch.rpm
338338
#### Default value
339339

340340
```YAML
341-
epel7_rpm: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
341+
epel7_rpm:
342+
https://archives.fedoraproject.org/pub/archive/epel/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm
342343
```
343344

344345
### epel8_rpm

roles/common/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ epel9_rpm: oracle-epel-release-el9
88
epel8_rpm: https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
99

1010
# @var epel7_rpm:description: Url for epel-release-latest-7.noarch.rpm
11-
epel7_rpm: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
11+
epel7_rpm: https://archives.fedoraproject.org/pub/archive/epel/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm
1212

1313
# @var epel6_rpm:description: Url for epel-release-latest-6.noarch.rpm
1414
epel6_rpm: https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm

0 commit comments

Comments
 (0)