Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
ka
/
ansible-role-knot
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
some fixes
master
Markus Katharina Brechtel
hace 7 años
padre
16daf05eae
commit
76e159fca5
Se han
modificado 3 ficheros
con
20 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+5
-0
handlers/main.yml
+9
-0
tasks/configure.yml
+6
-0
templates/knot.conf.j2
+ 5
- 0
handlers/main.yml
Ver fichero
@@ -5,3 +5,8 @@
name: knot
state: reloaded
listen: reload nameserver
- name: restart knot
service:
name: knot
state: restarted
+ 9
- 0
tasks/configure.yml
Ver fichero
@@ -5,3 +5,12 @@
src: knot.conf.j2
dest: /etc/knot/knot.conf
notify: reload knot
- name: working directory
file:
path: /var/lib/knot
state: directory
owner: knot
group: knot
recurse: yes
notify: restart knot
+ 6
- 0
templates/knot.conf.j2
Ver fichero
@@ -1,6 +1,12 @@
server:
{% if not nameserver_ips is defined%}
listen: 0.0.0.0@53
listen: ::@53
{% else %}
{% for ip in nameserver_ips %}
listen: {{ip|ipaddr('address')}}@53
{% endfor %}
{% endif %}
user: knot:knot
log:
Escribir
Vista previa
Cargando…
Cancelar
Guardar