-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
41 lines (36 loc) · 889 Bytes
/
local.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- name: Andino play installation
hosts:
- localhost
connection: local
roles:
- andino
- name: Post-installation play
hosts:
- localhost
connection: local
tasks:
- name: Update all remaining packages
apt:
upgrade: dist
force: true
become: true
tags: update
- name: Autoremove apt
apt:
autoremove: true
purge: true
become: true
tags: update, skip_ci
- name: Autoclean apt
apt:
autoclean: true
become: true
tags: update
- name: Display warnings
fail:
msg: "{{ common_warnings }}"
when: common_warnings is defined and common_warnings | length > 0
ignore_errors: true # noqa: ignore-errors
- name: Display post install message
debug:
msg: "To start using your robot, make sure to rebot it with: `sudo reboot`"