12345678910111213141516171819202122232425262728 |
- ---
- - name: Install NFS server
- package: name=nfs-utils state=present
- when: not openshift.common.is_containerized | bool
- register: result
- until: result | success
- - name: Start rpcbind
- systemd:
- name: rpcbind
- state: started
- enabled: yes
- - name: Start nfs
- systemd:
- 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
|