Skip to content

Commit

Permalink
Move services.yml into main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
emphoeller committed May 15, 2024
1 parent 6fba2aa commit e596845
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 19 deletions.
15 changes: 13 additions & 2 deletions roles/pyca-ansible/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@
- ffmpeg
- pyca

- name: Services
ansible.builtin.include_tasks: services.yml
- name: Ensure the pyCA services are started and enabled
become: true
ansible.builtin.systemd:
name: '{{ item }}.service'
enabled: true
state: started
loop:
- pyca-agentstate
- pyca-capture
- pyca-ingest
- pyca-schedule
- pyca-ui
- pyca

...
17 changes: 0 additions & 17 deletions roles/pyca-ansible/tasks/services.yml

This file was deleted.

0 comments on commit e596845

Please sign in to comment.