From 27819553c5de0bfdc7265b38665036cfce2b5d46 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 14 Jan 2026 17:11:32 +0000 Subject: [PATCH 1/2] ansible: update AIX to Python 3.12 AIX Toolbox now defaults the `python3` package to Python 3.12 so we need to adjust our symlinking accordingly. --- ansible/roles/baselayout/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/baselayout/tasks/main.yml b/ansible/roles/baselayout/tasks/main.yml index a4f24dbb8..d012be1d6 100644 --- a/ansible/roles/baselayout/tasks/main.yml +++ b/ansible/roles/baselayout/tasks/main.yml @@ -143,7 +143,7 @@ dest: "/usr/bin/{{ item.1 }}" state: link with_together: - - [ 'curl', 'curl_32', 'curl_64', 'tar', 'python3.9' ] + - [ 'curl', 'curl_32', 'curl_64', 'tar', 'python3.12' ] - [ 'curl', 'curl_32', 'curl_64', 'gtar', 'python3' ] - name: run ccache installer From 5d830c43d87e8a05e78c0d10d9358011503f5e68 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 15 Jan 2026 15:43:46 +0000 Subject: [PATCH 2/2] ansible: bump AIX disk sizes Increase the size of `/tmp` and `/var`. --- ansible/roles/bootstrap/tasks/partials/aix.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/roles/bootstrap/tasks/partials/aix.yml b/ansible/roles/bootstrap/tasks/partials/aix.yml index ed3dbd2a2..82c47565f 100644 --- a/ansible/roles/bootstrap/tasks/partials/aix.yml +++ b/ansible/roles/bootstrap/tasks/partials/aix.yml @@ -16,16 +16,16 @@ size: 6G state: present -- name: Set size of /var to 1G +- name: Set size of /var to 2G aix_filesystem: filesystem: /var - size: 1G + size: 2G state: present -- name: Set size of /tmp to 1G +- name: Set size of /tmp to 2G aix_filesystem: filesystem: /tmp - size: 1G + size: 2G state: present - name: Set size of /home to 50G