11 lines
231 B
YAML
11 lines
231 B
YAML
|
---
|
||
|
- name: install repo client
|
||
|
hosts: all
|
||
|
become: true
|
||
|
|
||
|
tasks:
|
||
|
- name: remove other files
|
||
|
include_tasks: yaml_sub/myrepo_clean.yaml
|
||
|
- name: update file myrepo.repo
|
||
|
import_tasks: yaml_sub/myrepo_data.yaml
|