15 lines
272 B
YAML
15 lines
272 B
YAML
|
---
|
||
|
# tasks file for stubby
|
||
|
|
||
|
- name: Installer stubby
|
||
|
ansible.builtin.apt:
|
||
|
name: stubby
|
||
|
become: true
|
||
|
|
||
|
- name: configurer stubby
|
||
|
ansible.builtin.template:
|
||
|
src: stubby.yml.j2
|
||
|
dest: /etc/stubby/stubby.yml
|
||
|
become: true
|
||
|
notify: Redémarrer stubby.service
|