Skip to content

Commit dbb8b98

Browse files
authored
ansible: update AIX to Python 3.12 (nodejs#4217)
AIX Toolbox now defaults the `python3` package to Python 3.12 so we need to adjust our symlinking accordingly. Increase the size of `/tmp` and `/var`. Refs: nodejs#4208
1 parent 9dab7ef commit dbb8b98

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

ansible/roles/baselayout/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
dest: "/usr/bin/{{ item.1 }}"
144144
state: link
145145
with_together:
146-
- [ 'curl', 'curl_32', 'curl_64', 'tar', 'python3.9' ]
146+
- [ 'curl', 'curl_32', 'curl_64', 'tar', 'python3.12' ]
147147
- [ 'curl', 'curl_32', 'curl_64', 'gtar', 'python3' ]
148148

149149
- name: run ccache installer

ansible/roles/bootstrap/tasks/partials/aix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
size: 6G
1717
state: present
1818

19-
- name: Set size of /var to 1G
19+
- name: Set size of /var to 2G
2020
aix_filesystem:
2121
filesystem: /var
22-
size: 1G
22+
size: 2G
2323
state: present
2424

25-
- name: Set size of /tmp to 1G
25+
- name: Set size of /tmp to 2G
2626
aix_filesystem:
2727
filesystem: /tmp
28-
size: 1G
28+
size: 2G
2929
state: present
3030

3131
- name: Set size of /home to 50G

0 commit comments

Comments
 (0)