File tree Expand file tree Collapse file tree 18 files changed +20
-20
lines changed
edpm_download_cache/tasks
edpm_network_config/tasks
edpm_telemetry_logging/tasks Expand file tree Collapse file tree 18 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1717 ansible.builtin.dnf :
1818 name : openvswitch
1919 state : present
20- when : not ansible_local.bootc
20+ when : ansible_local.bootc is not defined or not ansible_local.bootc
2121
2222 - name : Configure OvS DPDK configs
2323 ansible.builtin.import_role :
Original file line number Diff line number Diff line change 6666
6767- name : Include packages tasks
6868 ansible.builtin.include_tasks : packages.yml
69- when : not ansible_local.bootc
69+ when : ansible_local.bootc is not defined or not ansible_local.bootc
7070
7171- name : Set selinux state
7272 ansible.posix.selinux :
Original file line number Diff line number Diff line change 4040- name : Change FIPS status
4141 when :
4242 - edpm_bootstrap_fips_mode != 'check'
43- - not ansible_local.bootc
43+ - ansible_local.bootc is not defined or not ansible_local.bootc
4444 - >
4545 edpm_bootstrap_fips_mode !=
4646 edpm_bootstrap_fips_fms_status |
Original file line number Diff line number Diff line change 3131 ansible.builtin.include_tasks : packages.yml
3232 when :
3333 - edpm_download_cache_packages | bool
34- - not ansible_local.bootc
34+ - ansible_local.bootc is not defined or not ansible_local.bootc
3535
3636- name : Download container images
3737 ansible.builtin.include_tasks : container_images.yml
Original file line number Diff line number Diff line change 7474 when :
7575 - set_kernel_args is defined
7676 - set_kernel_args is true
77- - not ansible_local.bootc
77+ - ansible_local.bootc is not defined or not ansible_local.bootc
7878 block :
7979
8080 - name : Check if the kernelargs entry is already present in the file
Original file line number Diff line number Diff line change 3636 register : _install_packages_result
3737 when :
3838 - edpm_kernel_extra_packages | length > 0
39- - not ansible_local.bootc
39+ - ansible_local.bootc is not defined or not ansible_local.bootc
4040 until : _install_packages_result is succeeded
4141 retries : " {{ edpm_kernel_download_retries }}"
4242 delay : " {{ edpm_kernel_download_delay }}"
4545 ansible.builtin.dnf :
4646 name : ' dracut-config-generic'
4747 state : absent
48- when : not ansible_local.bootc
48+ when : ansible_local.bootc is not defined or not ansible_local.bootc
4949
5050 - name : Ensure the /etc/modules-load.d/ directory exists
5151 ansible.builtin.file :
Original file line number Diff line number Diff line change 2222 delay : " {{ edpm_libvirt_download_delay }}"
2323 notify :
2424 - Restart libvirt
25- when : not ansible_local.bootc
25+ when : ansible_local.bootc is not defined or not ansible_local.bootc
2626
2727- name : Ensure monolithic libvirt and tcp socket activation is not enabled or running
2828 tags :
Original file line number Diff line number Diff line change 2626- name : Install required packages
2727 ansible.builtin.import_tasks : package_management.yml
2828 when :
29- - not ansible_local.bootc
29+ - ansible_local.bootc is not defined or not ansible_local.bootc
3030
3131- name : Configure network with nmstate tool
3232 when : edpm_network_config_tool == 'nmstate'
Original file line number Diff line number Diff line change 4949 name : osp.edpm.edpm_bootstrap
5050 tasks_from : " packages.yml"
5151 when :
52- - not ansible_local.bootc
52+ - ansible_local.bootc is not defined or not ansible_local.bootc
5353
5454- name : Ensure /var/lib/edpm-config directory exists
5555 become : true
Original file line number Diff line number Diff line change 3838 ansible.builtin.package :
3939 name : nvme-cli
4040 state : present
41- when : not ansible_local.bootc
41+ when : ansible_local.bootc is not defined or not ansible_local.bootc
You can’t perform that action at this time.
0 commit comments