blob: 41e0c6daebc3339d43a6825e00a30513a42df4ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
# 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: playbooks/setup_tools_root.yaml
- include: playbooks/create_eos_app_shortcuts.yaml
- name: "Setting default personality"
shell: executable=/bin/bash eos-select-personality default
|