More E208 fixes

Change-Id: Iddda539a24e03ae33ef5e37630f98a7268f18dbe
This commit is contained in:
Sorin Sbarnea 2020-11-02 17:08:08 +00:00
parent b91fb9e066
commit 086d1a9284
7 changed files with 10 additions and 1 deletions

View File

@ -2,6 +2,7 @@
file:
path: ~/.launchpadlib
state: directory
mode: 0700
- name: Write credentials
template:

View File

@ -81,6 +81,7 @@
file:
path: "{{ ara_report_path }}"
state: directory
mode: 0755
- name: Save the ARA database
command: cp {{ ara_database_path }} {{ ara_report_path }}

View File

@ -27,4 +27,5 @@
path: /etc/dnf.conf
section: main
option: deltarpm
value: 0
value: "0"
mode: 0644

View File

@ -59,6 +59,7 @@
file:
path: '{{ nc_target }}'
state: directory
mode: 0755
- name: Configure gateway
shell: 'echo {{ default_gw_dev }} > {{ nc_target }}/dev_name'

View File

@ -22,6 +22,7 @@
file:
path: /etc/ct
state: directory
mode: 0755
- name: Install configuration files
become: true

View File

@ -19,11 +19,13 @@
copy:
src: RPM-GPG-KEY-CentOS-SIG-Cloud
dest: /tmp/RPM-GPG-KEY-CentOS-SIG-Cloud
mode: 0644
- name: Set up RDO repository
template:
src: zuul-multi-node-bridge-ovs.repo.j2
dest: /etc/yum.repos.d/zuul-multi-node-bridge-ovs.repo
mode: 0644
- name: Set package.use values for OVS on Gentoo
become: yes
@ -31,6 +33,7 @@
path: /etc/portage/package.use/ovs
line: "{{ zj_item.line }}"
create: yes
mode: 0644
loop:
- { line: 'dev-python/twisted conch # for openvswitch' }
- { line: 'sys-apps/util-linux caps # for openvswitch' }

View File

@ -8,6 +8,7 @@
copy:
content: "{{ zj_override.content }}"
dest: "{{ zj_override.dir }}/override.tf"
mode: 0644
loop: "{{ terraform_overrides }}"
loop_control:
loop_var: zj_override