forked from mdl29/donkeycarLPH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
donkeycar.yml
26 lines (24 loc) · 857 Bytes
/
donkeycar.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
---
# This playbook deploys the whole DonkeyCar framework.
- name: apply common configuration to all cars
hosts: all
remote_user: pi
roles:
- role: raspi-config #rasperry pi confiuguration role
become: yes # This role need root privileges
- role: car-config # car configurations (ntp, hostname, ds4drv...)
become: yes
- role: shutdown-btn # shutdown button service
become: yes
- role: openCV # Install openCV (optional)
become: yes
- role: donkeycar # Donkeycar installation
become: no
- role: mycar # create car with configurations
become: no
- role: IR-lap-timer # install dependencies for take charge IR counter
become: yes
- role: optimizations # Remove some expensive and useless things
become: yes
- role: jsfw # controller over wifi
become: yes