role-audiobookshelf/tasks/main.yml

24 lines
518 B
YAML
Raw Normal View History

2025-10-10 18:26:56 -05:00
#SPDX-License-Identifier: MIT-0
---
2025-10-10 18:31:59 -05:00
# tasks file for audiobookshelf
2025-10-10 20:21:49 -05:00
- name: install jack2
ansible.builtin.package:
name: jack2
state: present
- name: install audiobookshelf
ansible.builtin.package:
name: audiobookshelf
state: present
- name: deploy audiobookshelf config
ansible.builtin.copy:
src: files/audiobookshelf
dest: /etc/conf.d/audiobookshelf
mode: '0644'
- name: ensure audiobookshelf is running
service:
name: audiobookshelf
state: started
enabled: yes