Fix syntax issues
This commit is contained in:
parent
56e60c0a28
commit
44003a8138
2 changed files with 3 additions and 4 deletions
roles/inspircd
|
@ -26,13 +26,12 @@ inspircd_modules:
|
||||||
- spanningtree
|
- spanningtree
|
||||||
- userip
|
- userip
|
||||||
- watch
|
- watch
|
||||||
|
inspircd_modules_additional: []
|
||||||
|
|
||||||
inspircd_server_hostname: "{{ inventory_hostname }}"
|
inspircd_server_hostname: "{{ inventory_hostname }}"
|
||||||
inspircd_server_description: "{{ inventory_hostname }}"
|
inspircd_server_description: "{{ inventory_hostname }}"
|
||||||
inspircd_server_id: null
|
|
||||||
inspircd_server_network: "{{ inventory_hostname }}"
|
inspircd_server_network: "{{ inventory_hostname }}"
|
||||||
|
|
||||||
inspircd_admin_name: null
|
|
||||||
inspircd_admin_nick: admin
|
inspircd_admin_nick: admin
|
||||||
inspircd_admin_email: noreply@example.com
|
inspircd_admin_email: noreply@example.com
|
||||||
|
|
||||||
|
|
|
@ -19,14 +19,14 @@
|
||||||
|
|
||||||
<server
|
<server
|
||||||
name="{{ inspircd_server_hostname }}"
|
name="{{ inspircd_server_hostname }}"
|
||||||
{% if inspircd_server_id != null %}
|
{% if inspircd_server_id is defined %}
|
||||||
id="{{ inspircd_server_id }}"
|
id="{{ inspircd_server_id }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
description="{{ inspircd_server_description }}"
|
description="{{ inspircd_server_description }}"
|
||||||
network="{{ inspircd_server_network }}">
|
network="{{ inspircd_server_network }}">
|
||||||
|
|
||||||
<admin
|
<admin
|
||||||
{% if inspircd_admin_name != null %}
|
{% if inspircd_admin_name is defined %}
|
||||||
name="{{ inspircd_admin_name }}"
|
name="{{ inspircd_admin_name }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
nick="{{ inspircd_admin_nick }}"
|
nick="{{ inspircd_admin_nick }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue