This website works better with JavaScript.
首頁
探索
說明
註冊
登入
ka
/
ansible-role-knot
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
some fixes
master
Markus Katharina Brechtel
7 年之前
父節點
16daf05eae
當前提交
76e159fca5
共有
3 個文件被更改
,包括
20 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
handlers/main.yml
+9
-0
tasks/configure.yml
+6
-0
templates/knot.conf.j2
+ 5
- 0
handlers/main.yml
查看文件
@@ -5,3 +5,8 @@
name: knot
state: reloaded
listen: reload nameserver
- name: restart knot
service:
name: knot
state: restarted
+ 9
- 0
tasks/configure.yml
查看文件
@@ -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
查看文件
@@ -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:
Write
Preview
Loading…
取消
儲存