You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
393 B
12 lines
393 B
---
|
|
- name: OpenBSD ansible bootstrap
|
|
import_tasks: openbsd.yml
|
|
when: ansible_distribution|lower == 'openbsd'
|
|
- name: ubuntu ansible bootstrap
|
|
import_tasks: ubuntu.yml
|
|
when: ansible_distribution|lower == 'ubuntu'
|
|
- name: arch linux ansible bootstrap
|
|
import_tasks: arch.yml
|
|
when: ansible_distribution|lower == 'archlinux'
|
|
- name: Common ansible bootstrap
|
|
import_tasks: common.yml
|
|
|