Terminology update

This commit is contained in:
Cory Hawkless 2021-03-08 11:02:15 +10:30
parent 940ccaed81
commit 824999d15c
1 changed files with 4 additions and 7 deletions

View File

@ -25,7 +25,7 @@
debug: msg="NOT Installing OpenVSwitch, MD5 sum matches" debug: msg="NOT Installing OpenVSwitch, MD5 sum matches"
when: not force_new_ovs_download when: not force_new_ovs_download
- name: "Copy OVN binaries" - name: "Copy OpenVSwitch packages"
copy: copy:
src: "ubuntu20/{{ item }}" src: "ubuntu20/{{ item }}"
dest: "/tmp/{{ item }}" dest: "/tmp/{{ item }}"
@ -35,10 +35,7 @@
- openvswitch-switch_2.14.0-1_amd64.deb - openvswitch-switch_2.14.0-1_amd64.deb
when: force_new_ovs_download when: force_new_ovs_download
- name: "Install OpenVSwitch packages"
- name: "Install packages"
apt: apt:
deb: "{{ item }}" deb: "{{ item }}"
with_items: with_items:
@ -73,7 +70,7 @@
- debug: msg="NOT Installing OVN, MD5 sum matches" - debug: msg="NOT Installing OVN, MD5 sum matches"
when: not force_new_ovn_download and use_ovn when: not force_new_ovn_download and use_ovn
- name: "Copy OVN binaries" - name: "Copy OVN packages"
copy: copy:
src: "ubuntu20/{{ item }}" src: "ubuntu20/{{ item }}"
dest: "/tmp/{{ item }}" dest: "/tmp/{{ item }}"
@ -81,7 +78,7 @@
- ovn_20.06.0-1_amd64.deb - ovn_20.06.0-1_amd64.deb
when: force_new_ovn_download and use_ovn when: force_new_ovn_download and use_ovn
- name: "Install packages" - name: "Install OVN packages"
apt: apt:
deb: "{{ item }}" deb: "{{ item }}"
with_items: with_items: