Split lines to not exceed 160 characters limit

Change-Id: Ia5afdded2df7ec80b36072dec3c7fbbce5600647
This commit is contained in:
Dmitriy Rabotyagov 2023-09-18 16:19:04 +02:00
parent 9d2924fa80
commit 08ccb5108a
1 changed files with 4 additions and 2 deletions

View File

@ -51,7 +51,8 @@
{{ nova_bin }}/nova-manage cell_v2 create_cell
--name {{ nova_cell1_name }}
--database_connection {scheme}://{username}:{password}@{hostname}:{port}/{path}?{query}
--transport-url {scheme}://{username}:{password}@{hostname}:{port}/{{ (not nova_oslomsg_rabbit_quorum_queues | bool) | ternary('/{path}', '{path}') }}?{query}
--transport-url {scheme}://{username}:{password}@{hostname}:{port}/{{ (
not nova_oslomsg_rabbit_quorum_queues | bool) | ternary('/{path}', '{path}') }}?{query}
become: yes
become_user: "{{ nova_system_user_name }}"
register: nova_cell1_create
@ -72,7 +73,8 @@
{{ nova_bin }}/nova-manage cell_v2 update_cell
--cell_uuid {{ _cell_uuid['stdout'].split()[3] }}
--database_connection {scheme}://{username}:{password}@{hostname}:{port}/{path}?{query}
--transport-url {scheme}://{username}:{password}@{hostname}:{port}/{{ (not nova_oslomsg_rabbit_quorum_queues | bool) | ternary('/{path}', '{path}') }}?{query}
--transport-url {scheme}://{username}:{password}@{hostname}:{port}/{{ (
not nova_oslomsg_rabbit_quorum_queues | bool) | ternary('/{path}', '{path}') }}?{query}
become: yes
become_user: "{{ nova_system_user_name }}"
changed_when: false