blob: 731fdf993903c9cad5b44ed6c9bfbe39f1ca1642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
# vim:ff=unix ts=2 sw=2 ai expandtab
###
# Notice the minus on the line below -- this starts the playbook's record
# in the YAML document. Only one playbook is allowed per YAML file. Indent
# the body of the playbook.
-
hosts: dev_machine
sudo: True
vars_files:
- "../default_variables.yaml"
tasks:
- include: setup_other_tools.yaml
- name: "Setting default personality"
shell: executable=/bin/bash eos-select-personality default
|