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
|
||||
- userip
|
||||
- watch
|
||||
inspircd_modules_additional: []
|
||||
|
||||
inspircd_server_hostname: "{{ inventory_hostname }}"
|
||||
inspircd_server_description: "{{ inventory_hostname }}"
|
||||
inspircd_server_id: null
|
||||
inspircd_server_network: "{{ inventory_hostname }}"
|
||||
|
||||
inspircd_admin_name: null
|
||||
inspircd_admin_nick: admin
|
||||
inspircd_admin_email: noreply@example.com
|
||||
|
||||
|
|
|
@ -19,14 +19,14 @@
|
|||
|
||||
<server
|
||||
name="{{ inspircd_server_hostname }}"
|
||||
{% if inspircd_server_id != null %}
|
||||
{% if inspircd_server_id is defined %}
|
||||
id="{{ inspircd_server_id }}"
|
||||
{% endif %}
|
||||
description="{{ inspircd_server_description }}"
|
||||
network="{{ inspircd_server_network }}">
|
||||
|
||||
<admin
|
||||
{% if inspircd_admin_name != null %}
|
||||
{% if inspircd_admin_name is defined %}
|
||||
name="{{ inspircd_admin_name }}"
|
||||
{% endif %}
|
||||
nick="{{ inspircd_admin_nick }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue