1234567891011121314151617 |
- ---
- - name: Install NFS server
- action: "{{ ansible_pkg_mgr }} name=nfs-utils state=present"
- when: not openshift.common.is_containerized | bool
-
- - name: Start rpcbind
- service: name=rpcbind state=started enabled=yes
- - name: Start nfs
- service: name=nfs-server state=started enabled=yes
- - name: Export the directories
- lineinfile: dest=/etc/exports
- regexp="^{{ osnl_mount_dir }}/{{ item }} "
- line="{{ osnl_mount_dir }}/{{ item }} {{osnl_nfs_export_options}}"
- with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
- notify: restart nfs
|