Merge "Fix jinja ansible lint error"

This commit is contained in:
Zuul 2023-02-08 12:14:07 +00:00 committed by Gerrit Code Review
commit 7e73121984
2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@ skip_list:
# FIXME: gradually fix and remove these exclusions:
- fqcn[action] # Use FQCN for module actions
- fqcn[action-core] # Use FQCN for builtin actions
- jinja[spacing] # Jinja2 spacing could be improved
- meta-no-info # meta/main.yml should contain relevant info
- meta-no-tags # Tags must contain lowercase letters and digits only
- name[casing] #All names should start with an uppercase letter

View File

@ -10,8 +10,8 @@ network_interface: "virbr0"
# documentation at http://ipxe.org/crypto
ipa_file_protocol: "http"
ipa_kernel_url: "{{ ipa_file_protocol }}://{{ hostvars[inventory_hostname]['ansible_' + network_interface | replace('-', '_')]['ipv4']['address'] }}:{{file_url_port}}/ipa.kernel"
ipa_ramdisk_url: "{{ ipa_file_protocol }}://{{ hostvars[inventory_hostname]['ansible_' + network_interface | replace('-', '_')]['ipv4']['address'] }}:{{file_url_port}}/ipa.initramfs"
ipa_kernel_url: "{{ ipa_file_protocol }}://{{ hostvars[inventory_hostname]['ansible_' + network_interface | replace('-', '_')]['ipv4']['address'] }}:{{ file_url_port }}/ipa.kernel"
ipa_ramdisk_url: "{{ ipa_file_protocol }}://{{ hostvars[inventory_hostname]['ansible_' + network_interface | replace('-', '_')]['ipv4']['address'] }}:{{ file_url_port }}/ipa.initramfs"
# Timeout for gathering facts.
fact_gather_timeout: "{{ lookup('config', 'DEFAULT_GATHER_TIMEOUT', on_missing='skip') | default(omit, true) }}"