~lamont/charms/trusty/anope/trunk

« back to all changes in this revision

Viewing changes to templates/services.conf.tmpl

  • Committer: LaMont Jones
  • Date: 2015-04-22 22:00:47 UTC
  • Revision ID: lamont@canonical.com-20150422220047-odojwp13jztvg9oo
config cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
define
13
13
{
14
14
  name = "services.host"
15
 
  value = "{{ servername }}
 
15
  value = "{{ servername }}"
16
16
}
17
17
 
18
18
{% for server in ircdservices -%}
76
76
  languages = "ca_ES.UTF-8 de_DE.UTF-8 el_GR.UTF-8 es_ES.UTF-8 fr_FR.UTF-8 hu_HU.UTF-8 it_IT.UTF-8 nl_NL.UTF-8 pl_PL.UTF-8 pt_PT.UTF-8 ru_RU.UTF-8 tr_TR.UTF-8"
77
77
}
78
78
 
79
 
{% for module in modules -%}
 
79
{% for module in yaml.modules -%}
80
80
include
81
81
{
82
82
  type = "file"
143
143
opertype
144
144
{
145
145
  name = "{{ name }}"
146
 
  {% if inherits %}inherits = "{{ inherits }}"
147
 
  {% if commands %}commands = "{{ commands }}"
148
 
  {% if privs %}privs = "{{ privs }}"
 
146
  {% if inherits %}inherits = "{{ inherits }}"{% endif %}
 
147
  {% if commands %}commands = "{{ commands }}"{% endif %}
 
148
  {% if privs %}privs = "{{ privs }}"{% endif %}
149
149
}
150
150
{% endfor %}
151
151