Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion ansible/roles/baselayout/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions ansible/roles/bootstrap/tasks/partials/aix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down