Skip to content

Commit a89d51d

Browse files
committed
default to releasever 8.6
1 parent b502db2 commit a89d51d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ansible/bootstrap.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@
4949
become: true
5050
- name: Reset ssh connection to allow user changes to affect ansible_user
5151
meta: reset_connection
52+
- name: Set dnf releasever
53+
ansible.builtin.copy:
54+
dest: /etc/yum/vars/releasever
55+
content: "{{ releasever }}"
5256

5357
- hosts: systemd
5458
become: yes
@@ -159,4 +163,4 @@
159163
sleep: 15
160164
- name: update facts
161165
setup:
162-
when: (sestatus.changed | default(false)) or (sestatus.reboot_required | default(false))
166+
when: (sestatus.changed | default(false)) or (sestatus.reboot_required | default(false))

environments/common/inventory/group_vars/all/defaults.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ansible_user: rocky
44
appliances_repository_root: "{{ lookup('env', 'APPLIANCES_REPO_ROOT') }}"
55
appliances_environment_root: "{{ lookup('env', 'APPLIANCES_ENVIRONMENT_ROOT') }}"
66
#appliances_state_dir: # define an absolute path here to use for persistent state
7+
releasever: '8.6'
78

89
# Address(ip/dns) for internal communication between services. This is
910
# normally traffic you do no want to expose to users.

0 commit comments

Comments
 (0)