diff --git a/meta/main.yml b/meta/main.yml index bbb94fb..2b0bf66 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -3,6 +3,10 @@ galaxy_info: author: ArchiFleKs description: Ansible role to bootstrap OS company: clusterfraks-dynamics + platforms: + - name: GenericLinux + version: + - any license: Apache diff --git a/tasks/python.yml b/tasks/python.yml index 0ffc4f6..273791e 100644 --- a/tasks/python.yml +++ b/tasks/python.yml @@ -41,7 +41,7 @@ when: need_pip.rc != 0 - name: Bootstrap | Install pip - command: "{{ansible_python_interpreter}} ~/get-pip.py" + command: "{{ ansible_python_interpreter }} ~/get-pip.py" when: need_pip.rc != 0 - name: Bootstrap | Remove get-pip.py @@ -59,6 +59,6 @@ - name: Install required python modules pip: - name: "{{pip_python_coreos_modules}}" + name: "{{ pip_python_coreos_modules }}" environment: PATH: "{{ ansible_env.PATH }}:{{ bin_dir }}"