Skip to content

Commit

Permalink
install missing library for rhel os
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemorency authored and bardielle committed May 23, 2024
1 parent f20efe6 commit d461740
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions roles/provision_vcenter/tasks/deploy_from_iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
dest: /tmp/vcsa_deployment_config.json
mode: "0600"

# library libnsl is required but no longer included on
# rhel 8+
- name: Install Required Libraries For OVFTool
ansible.builtin.package:
name: libnsl
state: present
when: ansible_os_family == 'RedHat'

- name: Deploy vCSA With Local Log Written To /tmp/vcsa.log
ansible.builtin.shell: >-
./vcsa-deploy install -v --accept-eula --no-ssl-certificate-verification
Expand Down

0 comments on commit d461740

Please sign in to comment.