12 lines
207 B
YAML
12 lines
207 B
YAML
---
|
|
- hosts: "{{host}}"
|
|
gather_facts: false
|
|
tasks:
|
|
- import_role:
|
|
name: apk
|
|
when: task_name is match('^(update|revert)_apk$')
|
|
vars:
|
|
task: "{{task_name}}"
|
|
apk: "{{apk_name}}"
|
|
|