blob: 0bba93ba19ef1592e2cb14711a666ede3cbb2d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
- name: Create flexvolume plugin directory if not existed
file:
path: "{{ flexvolume_plugin_dir }}"
state: directory
mode: 0755
- name: Copy opensds flexvolume plugin binary file into flexvolume plugin dir
copy:
src: "{{ nbp_dir }}/flexvolume/opensds"
dest: "{{ flexvolume_plugin_dir }}/opensds"
|