ansible-role-motion/tasks/install.yml

14 lines
294 B
YAML
Raw Normal View History

2022-10-11 09:19:01 +02:00
---
- name: Install required software
apt:
name:
- motion
- mutt
- name: Deploy script to process events
copy:
src: files/process_motion_event.sh
dest: /usr/local/bin/process_motion_event.sh
owner: motion
group: motion
mode: 0750