blob: c67d7b89b1b9b47e310f4506f19bf8adc6e4fb66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- hosts: localhost
tasks:
- name: load OS specific vars
include_vars: '{{ item }}'
with_first_found:
- files:
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_os_family }}.yml'
paths: '../vars'
tags: always
- include_role:
name: subversion
tags: always
|