Merge "ovn: Add neutron-cleanup"

This commit is contained in:
Zuul 2020-10-19 23:26:48 +00:00 committed by Gerrit Code Review
commit c926343296
1 changed files with 15 additions and 0 deletions

View File

@ -310,4 +310,19 @@ outputs:
name: virt_sandbox_use_netlink
persistent: yes
state: yes
- name: Copy in cleanup script
copy:
content: {get_file: ../neutron/neutron-cleanup}
dest: '/usr/libexec/neutron-cleanup'
force: yes
mode: '0755'
- name: Copy in cleanup service
copy:
content: {get_file: ../neutron/neutron-cleanup.service}
dest: '/usr/lib/systemd/system/neutron-cleanup.service'
force: yes
- name: Enabling the cleanup service
service:
name: neutron-cleanup
enabled: yes
upgrade_tasks: []