diff options
author | pmikus <pmikus@cisco.com> | 2021-08-18 12:04:27 +0000 |
---|---|---|
committer | pmikus <pmikus@cisco.com> | 2021-08-18 12:04:27 +0000 |
commit | d41a5490f30a161561c39c4f1b08add17b9cf6f7 (patch) | |
tree | 4244f8492f66f5ba1afe1c85c3a55340b125c8f7 /fdio.infra.ansible/roles/iperf | |
parent | a24c98b45ca1e9d56039d7649f65ac31e006d949 (diff) |
Infra: Ansible yaml lint cleanup
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: If00b376bd78b7b603d7887c1e149e7dccdb6d217
Diffstat (limited to 'fdio.infra.ansible/roles/iperf')
-rw-r--r-- | fdio.infra.ansible/roles/iperf/tasks/main.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fdio.infra.ansible/roles/iperf/tasks/main.yaml b/fdio.infra.ansible/roles/iperf/tasks/main.yaml index f8948cae57..a2b7709cef 100644 --- a/fdio.infra.ansible/roles/iperf/tasks/main.yaml +++ b/fdio.infra.ansible/roles/iperf/tasks/main.yaml @@ -3,7 +3,7 @@ - name: Inst - Update Package Cache (APT) apt: - update_cache: yes + update_cache: true cache_valid_time: 3600 when: - ansible_distribution|lower == 'ubuntu' @@ -40,7 +40,7 @@ - name: Compile Release I command: "./configure" args: - chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" + chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" loop: "{{ iperf_version }}" tags: - iperf-inst @@ -48,7 +48,7 @@ - name: Compile Release II command: "make" args: - chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" + chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" loop: "{{ iperf_version }}" tags: - iperf-inst @@ -56,7 +56,7 @@ - name: Compile Release III command: "make install" args: - chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" + chdir: "{{ iperf_target_dir }}/iperf-{{ item }}/" loop: "{{ iperf_version }}" tags: - - iperf-inst
\ No newline at end of file + - iperf-inst |