Merge "Fix stdout not defined"
This commit is contained in:
commit
518264a541
@ -234,8 +234,8 @@
|
|||||||
owner: "root"
|
owner: "root"
|
||||||
group: "root"
|
group: "root"
|
||||||
with_items:
|
with_items:
|
||||||
- { service_path: "{{ ironic_install_prefix.stdout }}", service_name: 'ironic-api', username: 'ironic', args: '--config-file /etc/ironic/ironic.conf'}
|
- { service_path: "{{ ironic_install_prefix.stdout | default('') }}", service_name: 'ironic-api', username: 'ironic', args: '--config-file /etc/ironic/ironic.conf'}
|
||||||
- { service_path: "{{ ironic_install_prefix.stdout }}", service_name: 'ironic-conductor', username: 'ironic', args: '--config-file /etc/ironic/ironic.conf'}
|
- { service_path: "{{ ironic_install_prefix.stdout | default('') }}", service_name: 'ironic-conductor', username: 'ironic', args: '--config-file /etc/ironic/ironic.conf'}
|
||||||
- name: "Create and populate /tftpboot"
|
- name: "Create and populate /tftpboot"
|
||||||
include: create_tftpboot.yml
|
include: create_tftpboot.yml
|
||||||
- name: "Setup Inventory Hosts Directory"
|
- name: "Setup Inventory Hosts Directory"
|
||||||
|
@ -73,6 +73,6 @@
|
|||||||
- name: "Inspector - Place service"
|
- name: "Inspector - Place service"
|
||||||
template: src={{ init_template }} dest={{ init_dest_dir }}{{item.service_name}}{{ init_ext }} owner=root group=root
|
template: src={{ init_template }} dest={{ init_dest_dir }}{{item.service_name}}{{ init_ext }} owner=root group=root
|
||||||
with_items:
|
with_items:
|
||||||
- { service_path: "{{ ironic_install_prefix.stdout }}", service_name: 'ironic-inspector', username: 'ironic', args: '--config-file /etc/ironic-inspector/inspector.conf'}
|
- { service_path: "{{ ironic_install_prefix.stdout | default('') }}", service_name: 'ironic-inspector', username: 'ironic', args: '--config-file /etc/ironic-inspector/inspector.conf'}
|
||||||
- name: "Inspector - Explicitly permit TCP/5050 for ironic-inspector callback"
|
- name: "Inspector - Explicitly permit TCP/5050 for ironic-inspector callback"
|
||||||
command: iptables -I INPUT -p tcp --dport 5050 -i {{network_interface}} -j ACCEPT
|
command: iptables -I INPUT -p tcp --dport 5050 -i {{network_interface}} -j ACCEPT
|
||||||
|
Loading…
Reference in New Issue
Block a user