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
15 changes: 15 additions & 0 deletions ansible/roles/baselayout/tasks/partials/postinstall/aix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#
# AIX post-installation tasks
#

- name: "rust : create symlinks for Rust binaries"
file:
src: /opt/freeware/lib/RustSDK/1.88/bin/{{ item }}
dest: /opt/freeware/bin/{{ item }}
owner: root
group: system
state: link
loop:
- rustc
- rustfmt
- cargo
2 changes: 1 addition & 1 deletion ansible/roles/baselayout/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ common_packages: [
# % ansible -m debug -a "var=os" HOST
packages: {
aix: [
'bash,cmake,coreutils,curl,gcc-c++,tar,unzip,git,make,sudo,python3-setuptools,python3,xz',
'bash,cmake,coreutils,curl,gcc-c++,tar,unzip,git,make,sudo,python3-setuptools,python3,xz,rust1.88,cargo1.88,rustfmt1.88',
],

# Appears to be some issue with the Ansible dnf task on AIX and gcc10-c++, so handle separately.
Expand Down