16 lines
292 B
YAML
16 lines
292 B
YAML
|
- name: Dump config from router
|
||
|
hosts: routers
|
||
|
tasks:
|
||
|
- name: Dump config
|
||
|
vyos.vyos.vyos_config:
|
||
|
backup: yes
|
||
|
backup_options:
|
||
|
dir_path: ./router_backup
|
||
|
filename: ./backup.cfg
|
||
|
|
||
|
- name: Configure PCs
|
||
|
hosts: PCs
|
||
|
roles:
|
||
|
- web-browser
|
||
|
|