mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-02-03 06:58:46 +00:00
11 lines
218 B
YAML
11 lines
218 B
YAML
|
- hosts: router
|
||
|
name: Setup router
|
||
|
ignore_unreachable: false
|
||
|
become: True
|
||
|
tasks:
|
||
|
- name: Upload service config
|
||
|
ansible.builtin.copy:
|
||
|
src: config/dnsmasq.conf.add
|
||
|
dest: /jffs/configs/
|
||
|
|