Skip to content

Commit

Permalink
add symlinks for libffi on sles (#2963)
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 authored Feb 27, 2023
1 parent 76866f2 commit 052bdf4
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,25 @@
- (ansible_architecture == "x86_64") or (ansible_architecture == "s390x")
- not expat_installed.stat.exists
tags: expat

- name: Add libffi6 symlink for (SLES12, s390x)
file:
src: /usr/lib64/libffi.so.4
dest: /usr/lib64/libffi.so.6
owner: root
group: root
state: link
when:
- (ansible_distribution_major_version == "12" and ansible_architecture == "s390x")
tags: libffi_sles

- name: Add libffi6 symlink for (SLES15, s390x)
file:
src: /usr/lib64/libffi.so.7
dest: /usr/lib64/libffi.so.6
owner: root
group: root
state: link
when:
- (ansible_distribution_major_version == "15" and ansible_architecture == "s390x")
tags: libffi_sles

0 comments on commit 052bdf4

Please sign in to comment.