13 lines
235 B
YAML
13 lines
235 B
YAML
---
|
|
- set_fact:
|
|
use_github: '{{
|
|
ansible_distribution == "Ubuntu" and
|
|
ansible_distribution_version == "18.04"
|
|
}}'
|
|
|
|
- when: use_github
|
|
include_tasks: deb.yaml
|
|
|
|
- when: not use_github
|
|
include_tasks: apt.yaml
|