mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
11 lines
288 B
YAML
Executable File
11 lines
288 B
YAML
Executable File
- hosts: router
|
|
name: Setup router
|
|
ignore_unreachable: false
|
|
tasks:
|
|
- name: Upload service config
|
|
ansible.builtin.copy:
|
|
src: conf/router/dnsmasq.conf.add
|
|
dest: /jffs/configs/
|
|
- name: Restart dnsmasq
|
|
ansible.builtin.shell: service restart_dnsmasq
|