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

aixPb: Add steps to install dnf and deprecate yum for AIX 7.2 and higher #3271

Merged
merged 19 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
3 changes: 2 additions & 1 deletion ansible/playbooks/AdoptOpenJDK_AIX_Playbook/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
# Note: AIX File system configuration must be run now as RPM based software
# cannot expand filesystem space on demand
- aixfs
- yum
- role: dnf
tags: dnf
sxa marked this conversation as resolved.
Show resolved Hide resolved

## additional OSS packages
- ant
Expand Down
183 changes: 183 additions & 0 deletions ansible/playbooks/AdoptOpenJDK_AIX_Playbook/roles/dnf/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
---

# See https://github.com/adoptium/infrastructure/issues/3142#issuecomment-1658743632
# Yum is no longer supported on AIX 7.3. Dnf is recommended. Dnf supports AIX 7.1 TL3 and higher
# Dnf needs python3
# For more information https://community.ibm.com/community/user/power/blogs/sangamesh-mallayya1/2021/05/28/dnf-is-now-available-on-aix-toolbox?CommunityKey=10c1d831-47ee-4d92-a138-b03f7896f7c9&tab=recentcommunityblogsdashboard

# Dnf needs python3
- name: Fail if python3 is not available
stat:
path: /opt/freeware/bin/python3
register: python3_installed
failed_when: not python3_installed.stat.exists

- name: Check if dnf is installed
stat:
path: /opt/freeware/bin/dnf
register: dnf_installed

- name: Install dnf
when: not dnf_installed.stat.exists
block:
# Installs dnf when yum is not present
- name: Set install flag
set_fact:
install_flag: "-d"

- name: Check if yum is installed
stat:
path: /opt/freeware/bin/yum
register: yum_installed

# Installs dnf when yum is present, links yum to dnf
- name: Set install flag if yum is installed
set_fact:
install_flag: "-y"
when: yum_installed.stat.exists

- name: Download dnf script
Haroon-Khel marked this conversation as resolved.
Show resolved Hide resolved
get_url:
url: "https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/ezinstall/ppc/dnf_aixtoolbox.sh"
mode: 0644
validate_certs: false
dest: /tmp/dnf_aixtoolbox.sh
checksum: sha256:7582a79530a30280548bebf6730686ff3c8b4b7259ddf2d1361494be19a193f8

- name: Install dnf
shell: "/tmp/dnf_aixtoolbox.sh {{ install_flag }}"

- name: Remove dnf script
file:
state: absent
path: /tmp/dnf_aixtoolbox.sh

- name: Update dnf
dnf:
update_cache: true
name: '*'
state: latest

- name: Install packages
dnf:
name: "{{ item }}"
state: present
update_cache: yes
with_items:
- bash
- autoconf-2.69-1
- bc
- bison
- coreutils
- cpio
- cups-devel
- cups-libs
- expect
- flex
- freetype2-devel-2.8-1
- fontconfig-devel
- gawk
- git
- gnupg2-2.0.30
- grep
- libffi-devel
- make
- m4
- pcre
- pkg-config
- popt
- sed
- sudo
- tar
- tcl
- unzip
- wget
- xz-libs
- zip
- zsh

##########################################################################
# Adoptium builds do not work properly with the latest cmake @AIXToolbox #
##########################################################################
# NOTE: Cannot use dnf module here as it will pull in cmake 3.16 which we do not want
- name: Install cmake 3.14.3 prerequisites
command:
cmd: rpm -i "{{ item }}"
creates: /opt/freeware/etc/rpm/macros.cmake
with_items:
- https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc-7.1/cmake/cmake-filesystem-3.14.3-1.aix7.1.ppc.rpm
- https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc-7.1/cmake/cmake-rpm-macros-3.14.3-1.aix7.1.ppc.rpm
tags:
- rpm_install
- cmake

# See https://github.com/AdoptOpenJDK/openjdk-build/issues/2492 for why we are locking this
- name: Install cmake 3.14.3 (See https://github.com/AdoptOpenJDK/openjdk-build/issues/2492)
dnf:
name: cmake-3.14.3
state: present
update_cache: yes
tags:
- rpm_install
- cmake
##############################################################################
# TASK [yum : Install cmake 3.14.3
# (See https://github.com/AdoptOpenJDK/openjdk-build/issues/2492)]
# fatal: [x077]: FAILED! =>
# {"changed": false, "msg": "No package matching 'cmake-3.14.3' found available,
# installed or updated", "rc": 126,
# "results": ["No package matching 'cmake-3.14.3' found available,
# installed or updated"}
## If you get this message - you need to remove 'cmake*' from
# /opt/freeware/etc/yum/yum.conf
##############################################################################

- name: Ensure perl from /opt/freeware/bin is the default in /usr/bin
shell: mv /usr/bin/perl /usr/bin/perl.old && ln -s /opt/freeware/bin/perl /usr/bin/
failed_when: false
tags:
- rpm_install

# Create zlib.h and zconf.h links - See https://github.com/adoptium/infrastructure/issues/1952
- name: Copy zlib.h and zconf.h (See https://github.com/adoptium/infrastructure/issues/1952)
copy:
src: "/opt/freeware/include/{{ item }}"
dest: "/usr/include/"
force: true
remote_src: true
with_items:
- zconf.h
- zlib.h

##############################################################################
# Prevent accidental updates to 'locked' packages
##############################################################################
- name: Exclude packages from dnf (main)
lineinfile:
dest: /opt/freeware/etc/dnf/dnf.conf
firstmatch: true
insertafter: 'plugins=1'
line: 'exclude=autoconf cmake* freetype2*'
tags:
- cmake
- freetype2

- name: Remove packages - in case installed historically, or by accident
dnf:
name: "{{ item }}"
state: absent
with_items:
- libXrender-devel
- libXrender
- libXft
- tk
- renderproto
tags:
- adoptopenjdk

- name: Remove, if exists, reference to libXrender-devel include files
file:
state: absent
path: /opt/freeware/include/X11/extensions
tags:
- adoptopenjdk
Loading