Initial commit
[ta/infra-ansible.git] / roles / bootstrap-host / tasks / prepare_os_net_config.yml
1 # Copyright 2019 Nokia
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 - name: Create directory /etc/os-net-config/
16   file:
17     path: "/etc/os-net-config/"
18     state: directory
19     mode: 0755
20
21 - name: Create /tmp/os-net-config file
22   vars:
23     config_phase: "{{ lookup('env','CONFIG_PHASE') }}"
24   template:
25     src: "os_net_config.j2"
26     dest: "/tmp/os-net-config.json"
27     owner: "root"
28     mode: "0644"
29   changed_when: False
30
31 - name: Create os-net-config file /etc/os-net-config/config.json
32   copy:
33     content: "{{ lookup('file','/tmp/os-net-config.json')  | from_json }}"
34     dest: "/etc/os-net-config/config.json"
35     mode: 0440
36
37 - name: Run os-net-config command
38   command: "os-net-config --detailed-exit-codes -v -c /etc/os-net-config/config.json"
39   register: os_net_config_result
40   failed_when: not (os_net_config_result.rc == 0 or os_net_config_result.rc == 2)
41
42 - debug: var=os_net_config_result.stderr_lines
43   when: os_net_config_result.rc == 2
44
45 - name: Remove /tmp/os-net-config.json
46   file:
47     path: "/tmp/os-net-config.json"
48     state: absent
49   changed_when: False