forked from Gernby/raspberry-pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrontab.yml
More file actions
18 lines (18 loc) · 519 Bytes
/
crontab.yml
File metadata and controls
18 lines (18 loc) · 519 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- hosts: localhost
connection: local
tasks:
- name: "Launch Raspberry Pilot on boot"
cron:
user: ubuntu
name: "Launch Raspberry Pilot"
special_time: reboot
job: "bash raspilot/launch_openpilot.sh"
state: present
- name: "Adjust the niceness of critical porcesses"
cron:
user: root
name: "Adjust the niceness of critical processes"
special_time: reboot
job: "sleep 60; bash /home/ubuntu/raspilot/fix_niceness.sh"
state: present
become: yes