Skip to content
Snippets Groups Projects
Commit dd5ce844 authored by Jafar Lie's avatar Jafar Lie
Browse files

install nfs-client for ubuntu nodes

Former-commit-id: 1b92c287
parent 0b124ba4
No related branches found
No related tags found
No related merge requests found
...@@ -15,4 +15,13 @@ ...@@ -15,4 +15,13 @@
- nfs-utils-lib - nfs-utils-lib
when: ansible_os_family == "RedHat" and ansible_distribution_major_version < "7" when: ansible_os_family == "RedHat" and ansible_distribution_major_version < "7"
- name: install dependencies nfs-common ubuntu
apt:
name: nfs-common
state: present
update_cache: yes
become: true
become_user: root
when: ansible_distribution == 'Ubuntu'
- include: mountFileSystem.yml - include: mountFileSystem.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment