mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
371 B
YAML
16 lines
371 B
YAML
5 years ago
|
---
|
||
|
- 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
|