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