Execution
Date
08 Dec 2025 13:57:07 +0000
Duration
00:24:46.17
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.12.11
Summary
12
Hosts
1505
Tasks
1497
Results
32
Plays
487
Files
0
Records
File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_ironic/tasks/ironic_conductor_post_install.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | --- # Copyright 2015, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - name: Copy in sample dhcpd.conf file ansible.builtin.copy: src: "dhcpd.conf" dest: "/etc/dhcp/" mode: "0644" when: ironic_standalone notify: - Restart isc-dhcp-server - name: Create tftpboot path ansible.builtin.file: path: "{{ ironic_tftpd_root }}" state: directory owner: "{{ ironic_system_user_name }}" group: "{{ ironic_system_group_name }}" mode: "0755" - name: Copy in tftpd-hpa config file ansible.builtin.template: src: "tftpd-hpa.j2" dest: "/etc/default/tftpd-hpa" mode: "0644" when: - ansible_facts['os_family'] == 'Debian' notify: - Restart tftpd - name: Copy in tftpd map file ansible.builtin.template: src: "map-file" dest: "{{ ironic_tftpd_root }}/map-file" mode: "0644" notify: - Restart tftpd - name: Copy library modules into tftpboot ansible.builtin.copy: src: "{{ item }}" dest: "{{ ironic_tftpd_root }}/" remote_src: true mode: "0644" with_items: "{{ ironic_library_modules_paths }}" - name: Ensure grub directory exists in tftpboot ansible.builtin.file: path: "{{ ironic_grub_dir }}" state: directory recurse: true - name: Copy PXE grub config into tftpboot ansible.builtin.copy: src: "grub.conf" dest: "{{ ironic_grub_dir }}/grub.cfg" mode: "0644" owner: "ironic" group: "ironic" - name: Copy content into tftpboot (files) ansible.builtin.copy: src: "{{ item.path }}" dest: "{{ ironic_tftpd_root }}/{{ item.name }}" remote_src: true mode: "0644" with_items: "{{ (ironic_uefi_modules + ironic_tftp_extra_content) | selectattr('path', 'defined') | list }}" - name: Copy content into tftpboot (urls) ansible.builtin.get_url: url: "{{ item.url }}" dest: "{{ ironic_tftpd_root }}/{{ item.name }}" mode: "0644" with_items: "{{ (ironic_uefi_modules + ironic_tftp_extra_content) | selectattr('url', 'defined') | list }}" - name: Start up tftp ansible.builtin.service: name: "{{ ironic_tftpd_service_name }}" state: started enabled: true - name: Disable default nginx configuration ansible.builtin.file: path: /etc/nginx/sites-enabled/default state: absent when: "ironic_ipxe_enabled | bool" notify: - Restart web server - name: Remove default nginx config ansible.builtin.file: path: /etc/nginx/conf.d/default.conf state: absent when: "ironic_ipxe_enabled | bool" notify: - Restart web server - name: Ensure nginx configuration directories exist ansible.builtin.file: path: "{{ item }}" state: directory mode: "0755" when: "ironic_ipxe_enabled | bool" with_items: - "/etc/nginx/{{ ironic_nginx_conf_path }}" - name: Write alternate nginx.conf for rh like systems ansible.builtin.template: src: nginx-nodefault.conf.j2 dest: "/etc/nginx/nginx-nodefault.conf" mode: "0644" when: - ansible_facts['pkg_mgr'] == 'dnf' notify: - Restart web server - name: Create systemd dropin for rh like systems ansible.builtin.import_role: name: systemd_service when: - ansible_facts['pkg_mgr'] == 'dnf' vars: systemd_services: - service_name: "nginx" systemd_overrides_only: true load: false systemd_overrides: Service: ExecStart: - "" - "/usr/sbin/nginx -c /etc/nginx/nginx-nodefault.conf" notify: - Restart web server - name: Configure nginx virtual hosts ansible.builtin.template: src: ironic-ipxe.conf.j2 dest: "/etc/nginx/{{ ironic_nginx_conf_path }}/ironic-ipxe.conf" mode: "0644" when: "ironic_ipxe_enabled | bool" notify: - Restart web server - name: Link to enable nginx virtual hosts ansible.builtin.file: src: "/etc/nginx/sites-available/ironic-ipxe.conf" path: "/etc/nginx/sites-enabled/ironic-ipxe.conf" state: link when: - ansible_facts['os_family'] == "Debian" - "ironic_ipxe_enabled | bool" notify: - Restart web server |